cargo fmt

This commit is contained in:
Wesley Moore 2019-12-04 21:09:06 +11:00
parent dfa8f043e1
commit 2b44ec8aa9
No known key found for this signature in database
GPG key ID: BF67766C0BC2D0EE

View file

@ -3,6 +3,6 @@ pub struct Point(pub i32, pub i32);
impl Point {
pub fn manhattan_distance(&self) -> i32 {
self.0.abs() + self.1.abs()
self.0.abs() + self.1.abs()
}
}