From eb8a4a1ea91348688491d01029fe83e1f8eeec73 Mon Sep 17 00:00:00 2001 From: YangQi Date: Wed, 7 Feb 2024 22:09:07 +0800 Subject: [PATCH] Update macros.md Fill in the missing symbols --- src/macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.md b/src/macros.md index f01cf8dc79..14ea15e9bd 100644 --- a/src/macros.md +++ b/src/macros.md @@ -21,7 +21,7 @@ macro_rules! say_hello { } fn main() { - // This call will expand into `println!("Hello")` + // This call will expand into `println!("Hello!")` say_hello!() } ```