Skip to content

Commit

Permalink
Update geo-traits/src/point.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Corey Farwell <[email protected]>
  • Loading branch information
kylebarron and frewsxcv authored Oct 16, 2024
1 parent 58117ce commit 6b697dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geo-traits/src/point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub trait PointTrait {

/// Access the n'th (0-based) element of the CoordinateTuple.
/// Returns NaN if `n >= DIMENSION`.
/// See also [`nth()`](Self::nth_unchecked).
/// See also [`nth_unchecked()`](Self::nth_unchecked).
fn nth(&self, n: usize) -> Option<Self::T> {
if n < self.dim().size() {
Some(self.nth_unchecked(n))
Expand Down

0 comments on commit 6b697dd

Please sign in to comment.