Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchacon committed Dec 3, 2023
1 parent 68f0151 commit dc6d79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion day12/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn main() -> Result<()> {
let mut num2 = 0;
for (line_num, line) in lines.iter().enumerate() {
let Ok(v) = serde_json::from_str::<Value>(line) else {
panic!("{} - bad line {line}", line_num+1);
panic!("{} - bad line {line}", line_num + 1);
};

num += total(&v, false);
Expand Down

0 comments on commit dc6d79f

Please sign in to comment.