[board] Add the missing trailing } to fmt::Debug for Position

This commit is contained in:
Eryn Wells 2023-12-27 08:00:39 -07:00
parent b9ba2629c4
commit 4bec1538a1

View file

@ -138,7 +138,7 @@ impl fmt::Debug for Position {
}
output.push_str(" ],\n");
}
output.push_str(" ],\n");
output.push_str(" ],\n}");
write!(f, "{}", output)
}