cargo fmt

This commit is contained in:
Henry Schimke
2023-01-28 18:34:38 -06:00
parent e024573905
commit 9ffc5769ba
4 changed files with 29 additions and 19 deletions

View File

@@ -266,7 +266,7 @@ impl BitMatrix {
pub fn set_bool(&mut self, x: u32, y: u32, value: bool) {
if value {
self.set(x, y)
}else {
} else {
self.unset(x, y)
}
}