Skip to content

Commit

Permalink
fix: missing parens
Browse files Browse the repository at this point in the history
  • Loading branch information
khoover authored Oct 14, 2024
1 parent bd2cfde commit 8f7ef85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/local/room_coordinate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ mod test {
assert!(base[coord]
.iter()
.copied()
.all(|val| val == i as u16 * ROOM_SIZE as u16);
.all(|val| val == i as u16 * ROOM_SIZE as u16));
for j in 0..ROOM_USIZE {
base[coord][j] += j as u16;
}
Expand Down

0 comments on commit 8f7ef85

Please sign in to comment.