From e058c79219cf9ff7d44f4e71763f7f4fac6281b3 Mon Sep 17 00:00:00 2001 From: Rod Elias Date: Sat, 1 Aug 2020 19:22:30 -0300 Subject: [PATCH] fix output for "Printing 'hello, world!'" example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2114a78..5d9c332 100644 --- a/README.md +++ b/README.md @@ -395,7 +395,7 @@ fn main() { } ``` -The `{}` in `println!` means "put the variable inside here". This prints `Hello world number 8!`. +The `{}` in `println!` means "put the variable inside here". This prints `Hello, world number 8!`. We can put more in: