Skip to content

Commit

Permalink
Fix export in example
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Jun 17, 2022
1 parent b9cd493 commit 2c643c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geo/src/algorithm/densify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::{
/// # Examples
/// ```
/// use geo::{coord, Line, LineString};
/// use geo::line_interpolate_point::Densify;
/// use geo::Densify;
///
/// let line: Line<f64> = Line::new(coord! {x: 0.0, y: 6.0}, coord! {x: 1.0, y: 8.0});
/// let correct: LineString<f64> = vec![[0.0, 6.0], [0.5, 7.0], [1.0, 8.0]].into();
Expand Down

0 comments on commit 2c643c3

Please sign in to comment.