From c285c2750652fa00db6e21599fef835234314bcc Mon Sep 17 00:00:00 2001 From: Next Turn <45985406+NextTurn@users.noreply.github.com> Date: Sun, 15 Nov 2020 12:51:12 +0800 Subject: [PATCH] Minor grammar suggestion --- src/hello/print/print_debug.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/print/print_debug.md b/src/hello/print/print_debug.md index e9f043d93d..161b0b7729 100644 --- a/src/hello/print/print_debug.md +++ b/src/hello/print/print_debug.md @@ -20,7 +20,7 @@ struct UnPrintable(i32); struct DebugPrintable(i32); ``` -All `std` library types automatically are printable with `{:?}` too: +All `std` library types are automatically printable with `{:?}` too: ```rust,editable // Derive the `fmt::Debug` implementation for `Structure`. `Structure`