From 35a85b1482685d6423bd83867a31638169b52b9e Mon Sep 17 00:00:00 2001 From: Lauren Trinks Date: Thu, 15 Dec 2022 23:18:49 -0600 Subject: [PATCH] Update ch02-00-guessing-game-tutorial.md output shown for the example code is incorrect, actually prints "x = 5 and y + 2 = 12" --- 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