From 1f5106271a17bef3f34ef648ef9bda1c17d731cd Mon Sep 17 00:00:00 2001 From: Derek Croote Date: Sun, 19 Dec 2021 18:28:26 -0800 Subject: [PATCH] Comment out ch5-impossible-add book notes Closes #64 --- ch5/ch5-impossible-add.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch5/ch5-impossible-add.rs b/ch5/ch5-impossible-add.rs index 82cdd0fa..5ee1a46d 100644 --- a/ch5/ch5-impossible-add.rs +++ b/ch5/ch5-impossible-add.rs @@ -1,7 +1,7 @@ -#[allow(arithmetic_overflow)] <1> +#[allow(arithmetic_overflow)] // <1> fn main() { let (a, b) = (200, 200); - let c: u8 = a + b; <2> + let c: u8 = a + b; // <2> println!("200 + 200 = {}", c); }