Merge pull request #204 from ykomatsu/indentation

Fix wrong indentation
This commit is contained in:
Carol (Nichols || Goulding) 2016-08-19 10:26:58 -04:00 committed by GitHub
commit 2c9c3b53bb
2 changed files with 10 additions and 10 deletions

View File

@ -344,12 +344,12 @@ struct Point {
} }
impl Point { impl Point {
fn distance(&self, other: &Point) -> f64 { fn distance(&self, other: &Point) -> f64 {
let x_squared = f64::powi(other.x - self.x, 2); let x_squared = f64::powi(other.x - self.x, 2);
let y_squared = f64::powi(other.y - self.y, 2); let y_squared = f64::powi(other.y - self.y, 2);
f64::sqrt(x_squared + y_squared) f64::sqrt(x_squared + y_squared)
} }
} }
let p1 = Point { x: 0.0, y: 0.0 }; let p1 = Point { x: 0.0, y: 0.0 };

View File

@ -47,12 +47,12 @@ struct Point {
} }
impl Point { impl Point {
fn distance(&self, other: &Point) -> f64 { fn distance(&self, other: &Point) -> f64 {
let x_squared = f64::powi(other.x - self.x, 2); let x_squared = f64::powi(other.x - self.x, 2);
let y_squared = f64::powi(other.y - self.y, 2); let y_squared = f64::powi(other.y - self.y, 2);
f64::sqrt(x_squared + y_squared) f64::sqrt(x_squared + y_squared)
} }
} }
let p1 = Point { x: 0.0, y: 0.0 }; let p1 = Point { x: 0.0, y: 0.0 };