Skip to content

Commit fce2b43

Browse files
Fix linter error
1 parent fa75c68 commit fce2b43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geo/src/algorithm/contains/rect.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl<T> Contains<Polygon<T>> for Rect<T> where T: CoordNum {
4545
fn contains(&self, rhs: &Polygon<T>) -> bool {
4646
for c in rhs.exterior_coords_iter() {
4747
if !self.contains(&c) {
48-
return false
48+
return false;
4949
}
5050
}
5151
true

0 commit comments

Comments
 (0)