diff --git a/src/repr/board.rs b/src/repr/board.rs index 7be64b5..f5762ed 100644 --- a/src/repr/board.rs +++ b/src/repr/board.rs @@ -10,7 +10,7 @@ use std::{ /// Map of all points on the board against some type T /// Used to index like so: example[i][j] /// with each coordinate -pub struct PosMap(ArrayVec); +pub struct PosMap(ArrayVec); impl PosMap { #[allow(clippy::new_without_default)]