diff --git a/day08/src/main.rs b/day08/src/main.rs index 43ea7a5..ffda013 100644 --- a/day08/src/main.rs +++ b/day08/src/main.rs @@ -2,7 +2,7 @@ use std::fs; fn main() { const FILE_PATH: &str = "input"; - println!("Hi this is the seventh day of AOC2022, first we will read the file {}", FILE_PATH); + println!("Hi this is the eighth day of AOC2022, first we will read the file {}", FILE_PATH); let contents = fs::read_to_string(FILE_PATH) .expect("Should have been able to read the file");