[test][densify] Fix comment.

This commit is contained in:
Adam Wulkiewicz 2018-01-10 23:33:18 +01:00
parent 3daa5956f9
commit b7b7e2ef08

View File

@ -1,7 +1,7 @@
// Boost.Geometry
// Unit Test
// Copyright (c) 2017, Oracle and/or its affiliates.
// Copyright (c) 2017-2018, Oracle and/or its affiliates.
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
@ -132,7 +132,7 @@ inline void test_geometry(std::string const& wkt, Check const& check)
G o;
bg::densify(g, o, max_distance, d.compl_s);
// geometry was indeed complexified
// geometry was indeed densified
std::size_t g_count = bg::num_points(g);
std::size_t o_count = bg::num_points(o);
BOOST_CHECK(g_count < o_count);