From d05e8e17bf713cd51334fdb5856187d05ea6d202 Mon Sep 17 00:00:00 2001 From: Ayoub BOUMZEBRA Date: Thu, 15 Dec 2022 23:08:44 +0100 Subject: [PATCH] Update ch02-00-guessing-game-tutorial.md correct the output of println! --- src/ch02-00-guessing-game-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch02-00-guessing-game-tutorial.md b/src/ch02-00-guessing-game-tutorial.md index 4dac237642..4f28573333 100644 --- a/src/ch02-00-guessing-game-tutorial.md +++ b/src/ch02-00-guessing-game-tutorial.md @@ -291,7 +291,7 @@ let y = 10; println!("x = {x} and y + 2 = {}", y + 2); ``` -This code would print `x = 5 and y = 12`. +This code would print `x = 5 and y + 2 = 12`. ### Testing the First Part