Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More LineString iterators #705

Merged
merged 12 commits into from
Jan 6, 2022
Prev Previous commit
Next Next commit
Fix docstring
  • Loading branch information
urschrei committed Dec 28, 2021
commit fbcbf474bf56055119ccb8255bf4a6bb909ecc9d
2 changes: 1 addition & 1 deletion geo-types/src/line_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ impl<'a, T: CoordNum> DoubleEndedIterator for PointsIter<'a, T> {
}
}

/// A [Coordinate] iterator returned by the `iter` method on a [LineString]
/// A [Coordinate] iterator used by the `into_iter` method on a [LineString]
#[derive(Debug)]
pub struct CoordinatesIter<'a, T: CoordNum + 'a>(::std::slice::Iter<'a, Coordinate<T>>);
urschrei marked this conversation as resolved.
Show resolved Hide resolved

Expand Down