diff --git a/geometry/spline.cpp b/geometry/spline.cpp index c3b038e968..f855da0734 100644 --- a/geometry/spline.cpp +++ b/geometry/spline.cpp @@ -37,7 +37,7 @@ void Spline::AddPoint(PointD const & pt) /// Now we have line objects with zero length segments if (!IsEmpty() && (pt - m_position.back()).IsAlmostZero()) { - LOG(LDEBUG, ("Found seqment with zero lenth (the ended points are same)")); + LOG(LDEBUG, ("Found a zero-length segment (the endpoints coincide)")); return; }