From 914d625e1bbb201a6a9b27a61cb79e9c91d468b7 Mon Sep 17 00:00:00 2001 From: whs Date: Thu, 28 Sep 2023 19:34:43 +0800 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f485898..8548b03 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ let hash_map = rust::import("std::collections", "HashMap"); let tokens: rust::Tokens = quote! { fn main() { - let mut m = #hash_map::new(); + let mut m = $hash_map::new(); m.insert(1u32, 2u32); } };