From 3a2eae5134f57e46d721619cb649c9b6dcac751b Mon Sep 17 00:00:00 2001 From: drogozov Date: Wed, 6 Jul 2022 14:12:57 +0600 Subject: [PATCH] Fix a typo in print.md --- src/hello/print.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/print.md b/src/hello/print.md index efedeb79df..08a6291dcd 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -54,7 +54,7 @@ fn main() { // FIXME ^ Add the missing argument: "James" // Only types that implement fmt::Display can be formatted with `{}`. User- - // defined types to not implement fmt::Display by default + // defined types do not implement fmt::Display by default #[allow(dead_code)] struct Structure(i32);