Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Jan 26, 2021
1 parent fdb0577 commit 5ac0b48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions geo/src/algorithm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ pub mod extremes;
pub mod frechet_distance;
/// Calculate the Geodesic distance between two `Point`s.
pub mod geodesic_distance;
/// Calculate the Geodesic length of a line.
pub mod geodesic_length;
/// Calculate a new `Point` lying on a Geodesic arc between two `Point`s.
pub mod geodesic_intermediate;
/// Calculate the Geodesic length of a line.
pub mod geodesic_length;
/// Calculate a destination `Point`, given a distance and a bearing.
pub mod haversine_destination;
/// Calculate the Haversine distance between two `Geometries`.
Expand Down
2 changes: 1 addition & 1 deletion geo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ pub mod prelude {
pub use crate::algorithm::extremes::Extremes;
pub use crate::algorithm::frechet_distance::FrechetDistance;
pub use crate::algorithm::geodesic_distance::GeodesicDistance;
pub use crate::algorithm::geodesic_length::GeodesicLength;
pub use crate::algorithm::geodesic_intermediate::GeodesicIntermediate;
pub use crate::algorithm::geodesic_length::GeodesicLength;
pub use crate::algorithm::haversine_destination::HaversineDestination;
pub use crate::algorithm::haversine_distance::HaversineDistance;
pub use crate::algorithm::haversine_intermediate::HaversineIntermediate;
Expand Down

0 comments on commit 5ac0b48

Please sign in to comment.