From 571755927cfa0472d99b38c9a57df69cf2561812 Mon Sep 17 00:00:00 2001 From: Laine Taffin Altman Date: Fri, 2 Feb 2024 12:35:23 -0800 Subject: [PATCH] Point trait: correct doc comment (#159) --- rstar/src/point.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rstar/src/point.rs b/rstar/src/point.rs index e6d2e5e..7763c82 100644 --- a/rstar/src/point.rs +++ b/rstar/src/point.rs @@ -106,7 +106,7 @@ impl RTreeNum for S where S: Bounded + Num + Clone + Copy + Signed + PartialO /// [`crate::primitives::GeomWithData`] instead. /// This trait defines points, not points with metadata. /// -/// `Point` is implemented out of the box for arrays like `[f32; 2]` or `[f64; 7]` (up to dimension 9) +/// `Point` is implemented out of the box for arrays like `[f32; 2]` or `[f64; 7]` (for any number of dimensions), /// and for tuples like `(int, int)` and `(f64, f64, f64)` so tuples with only elements of the same type (up to dimension 9). /// ///