Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2016-06-29 17:39:15 +0300
committerMaxim Pimenov <m@maps.me>2016-06-29 17:39:15 +0300
commit16c2c758451480f79149dc0f3f2aefabc0300df6 (patch)
tree8014cbc9ef35c08411ad4b76273e92b901f25a87 /geometry
parentcdc6a731b91d512b7a9f1ef82fc0cbb8a270ccd2 (diff)
[geometry] Fixed a warning message.
It is already annoying as is, let it at least pretend to be grammatically correct.
Diffstat (limited to 'geometry')
-rw-r--r--geometry/spline.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}