Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Nov 1, 2023
1 parent 27296b4 commit aa3ebbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ where
.map(|(sign_x, sign_y)| (sign_x * half_extent, sign_y * half_extent))
.map(|(dx, dy)| Point::new(dx, dy))
.map(|delta| cell.centroid + delta)
.map(|centeroid| Qcell::new(centeroid, half_extent, polygon));
.map(|centroid| Qcell::new(centroid, half_extent, polygon));
self.extend(new_cells);
}
}
Expand Down

0 comments on commit aa3ebbd

Please sign in to comment.