From 458aa256404abae5553a2b1707fbeff072b6919e Mon Sep 17 00:00:00 2001 From: Victor LEUNG Date: Sat, 27 Apr 2024 02:47:10 +0200 Subject: [PATCH] Update src/compas/geometry/curves/line.py Co-authored-by: Gonzalo Casas --- src/compas/geometry/curves/line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compas/geometry/curves/line.py b/src/compas/geometry/curves/line.py index dc3bd9f1eae..427d82511a3 100644 --- a/src/compas/geometry/curves/line.py +++ b/src/compas/geometry/curves/line.py @@ -304,7 +304,7 @@ def point_at(self, t): t : float The relative position along the line as a fraction of the length of the line. 0.0 corresponds to the start point and 1.0 corresponds to the end point. - Number outside of this range are also valid and correspond to points beyond the start and end point. + Numbers outside of this range are also valid and correspond to points beyond the start and end point. Returns -------