From 368d5a5c921720977fd1e8fe3ee802024f400ce3 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Tue, 3 Oct 2023 23:28:54 +0900 Subject: [PATCH] Fix typo... --- frozen-abi/src/abi_example.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frozen-abi/src/abi_example.rs b/frozen-abi/src/abi_example.rs index 044c05b8a5b1db..01674603fcff17 100644 --- a/frozen-abi/src/abi_example.rs +++ b/frozen-abi/src/abi_example.rs @@ -318,7 +318,7 @@ impl AbiExample for std::sync::Arc { impl AbiExample for std::sync::Weak { fn example() -> Self { - info!("AbiExample for (Arc): {}", type_name::()); + info!("AbiExample for (Weak): {}", type_name::()); std::sync::Arc::downgrade(&std::sync::Arc::new(T::example())) } }