From deb4ccb64350e026532486a3df21f02bb49556ae Mon Sep 17 00:00:00 2001 From: Ernie Hershey Date: Tue, 28 May 2024 05:05:59 -0400 Subject: [PATCH] Grammar typo (#65) --- book/src/04_traits/04_derive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/04_traits/04_derive.md b/book/src/04_traits/04_derive.md index f7e4198..0078d19 100644 --- a/book/src/04_traits/04_derive.md +++ b/book/src/04_traits/04_derive.md @@ -58,7 +58,7 @@ You've already encountered a few macros in past exercises: Rust macros are **code generators**.\ They generate new Rust code based on the input you provide, and that generated code is then compiled alongside the rest of your program. Some macros are built into Rust's standard library, but you can also -write your own. We won't be creating our macro in this course, but you can find some useful +write your own. We won't be creating our own macro in this course, but you can find some useful pointers in the ["Further reading" section](#further-reading). ### Inspection -- 2.45.2