Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fix typo...
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Oct 4, 2023
1 parent 4a34a58 commit 368d5a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frozen-abi/src/abi_example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl<T: AbiExample> AbiExample for std::sync::Arc<T> {

impl<T: AbiExample> AbiExample for std::sync::Weak<T> {
fn example() -> Self {
info!("AbiExample for (Arc<T>): {}", type_name::<Self>());
info!("AbiExample for (Weak<T>): {}", type_name::<Self>());
std::sync::Arc::downgrade(&std::sync::Arc::new(T::example()))
}
}
Expand Down

0 comments on commit 368d5a5

Please sign in to comment.