diff --git a/ch5/ch5-bit-patterns.rs b/ch5/ch5-bit-patterns.rs index 03dab501..dae61fc9 100644 --- a/ch5/ch5-bit-patterns.rs +++ b/ch5/ch5-bit-patterns.rs @@ -8,5 +8,5 @@ fn main() { let sixtyfivethousand_535: u16 = 0b1111_1111_1111_1111; print!("{}, {}, {}, ..., ", zero, one, two); - println!("{}, {}, {}", sixty5_533, sixty5_534, sixty5_535); + println!("{}, {}, {}", sixtyfivethousand_533, sixtyfivethousand_534, sixtyfivethousand_535); }