Skip to content

Commit 99972b8

Browse files
committed
Rustfmt lints
1 parent 55b7f61 commit 99972b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/year2024/day13.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
//! ```
1616
//!
1717
//! To solve we invert the 2 x 2 matrix then premultiply the right column.
18-
use crate::util::parse::*;
1918
use crate::util::iter::*;
19+
use crate::util::parse::*;
2020

2121
type Claw = [i64; 6];
2222

src/year2024/day15.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ fn wide(
130130
index += 1;
131131

132132
let other = match grid[next] {
133-
b'#' => return, // Return early if there's a wall in the way.
133+
b'#' => return, // Return early if there's a wall in the way.
134134
b'[' => RIGHT,
135135
b']' => LEFT,
136136
_ => continue, // Open space doesn't add any more items to move.

0 commit comments

Comments
 (0)