fix pattern test

This commit is contained in:
Henry Schimke
2023-04-24 17:49:04 -05:00
parent d08f67feed
commit 483539a194
5 changed files with 18 additions and 10 deletions

View File

@@ -284,7 +284,7 @@ impl Point {
pub fn floor(self) -> Self {
Self {
x: self.x.floor(),
y: self.y.floor()
y: self.y.floor(),
}
}
}