From 16c2c758451480f79149dc0f3f2aefabc0300df6 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Wed, 29 Jun 2016 17:39:15 +0300 Subject: [PATCH] [geometry] Fixed a warning message. It is already annoying as is, let it at least pretend to be grammatically correct. --- geometry/spline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }