From ef0838faa3dbaf5153411f8d6ad94593e55242a8 Mon Sep 17 00:00:00 2001 From: Jui-Nan Yen Date: Fri, 19 Aug 2022 00:39:00 +0800 Subject: [PATCH] Fix typo in macros.md --- src/macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.md b/src/macros.md index ffeb923e50..3f12fcc412 100644 --- a/src/macros.md +++ b/src/macros.md @@ -37,4 +37,4 @@ So why are macros useful? 3. Variadic interfaces. Sometimes you want to define an interface that takes a variable number of arguments. An example is `println!` which could take any - number of arguments, depending on the format string!. (More on this later) + number of arguments, depending on the format string. (More on this later)