From 6b697dd7d3f3017e7d92e36cb9b9feb27006335c Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Wed, 16 Oct 2024 11:44:47 -0400 Subject: [PATCH] Update geo-traits/src/point.rs Co-authored-by: Corey Farwell --- geo-traits/src/point.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geo-traits/src/point.rs b/geo-traits/src/point.rs index a73cbf888..9c10b7d54 100644 --- a/geo-traits/src/point.rs +++ b/geo-traits/src/point.rs @@ -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 { if n < self.dim().size() { Some(self.nth_unchecked(n))