diff --git a/src/utils/segments_intersection.rs b/src/utils/segments_intersection.rs index 2c7b1a21..e508c137 100644 --- a/src/utils/segments_intersection.rs +++ b/src/utils/segments_intersection.rs @@ -10,9 +10,9 @@ use na::ComplexField; pub enum SegmentsIntersection { /// Single point of intersection. Point { - /// Location of the first intersection point on the first segment. + /// Location of the intersection point on the first segment. loc1: SegmentPointLocation, - /// Location of the second intersection point on the second segment. + /// Location of the intersection point on the second segment. loc2: SegmentPointLocation, }, /// Intersection along a segment (when both segments are collinear).