From 4af0c75e7a881bc7941aae007966b8b31714960e Mon Sep 17 00:00:00 2001 From: Erick Castillo <71948918+ErickCastle@users.noreply.github.com> Date: Tue, 15 Nov 2022 02:32:19 -0400 Subject: [PATCH] Added missing space in comment --- 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 cce838fc22..48634bddf2 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -43,7 +43,7 @@ fn main() { println!("{number:>5}", number=1); // You can pad numbers with extra zeroes, - //and left-adjust by flipping the sign. This will output "10000". + // and left-adjust by flipping the sign. This will output "10000". println!("{number:0<5}", number=1); // You can use named arguments in the format specifier by appending a `$`