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); }