From 898024a90749141cf6c9b2bcbffd89d87aa807b5 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 6 Sep 2016 10:35:33 -0700 Subject: [PATCH] Update ch02-00-guessing-game-tutorial.md Code section was not properly ended. Fixed that section so it ends the code block. --- src/ch02-00-guessing-game-tutorial.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ch02-00-guessing-game-tutorial.md b/src/ch02-00-guessing-game-tutorial.md index 4b53acf..c1877c1 100644 --- a/src/ch02-00-guessing-game-tutorial.md +++ b/src/ch02-00-guessing-game-tutorial.md @@ -188,6 +188,7 @@ Let’s move forward: ```rust,ignore io::stdin().read_line(&mut guess) .expect("Failed to read line"); +``` We included the input/output functionality from the standard library with use std::io; on the first line of the program. We are now calling an associated