From dda547b512e0f271907fc354018b0fdb8f359846 Mon Sep 17 00:00:00 2001 From: Jesse Skinner Date: Wed, 21 Dec 2022 04:04:37 -0500 Subject: [PATCH] Fix missing characters in example output Changed "x = 5 and y = 12" to "x = 5 and y + 2 = 12" to match the actual output. --- 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