From e94c623e0393db4e04a2c53353456004d75778e6 Mon Sep 17 00:00:00 2001 From: Justyna Janczyszyn <4153982+jjanczyszyn@users.noreply.github.com> Date: Thu, 19 Jul 2018 20:08:29 +0200 Subject: fixed typo in error message --- src/mbgl/style/conversion/tileset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mbgl/style/conversion/tileset.cpp b/src/mbgl/style/conversion/tileset.cpp index 15ed10a90f..fe3254b149 100644 --- a/src/mbgl/style/conversion/tileset.cpp +++ b/src/mbgl/style/conversion/tileset.cpp @@ -96,7 +96,7 @@ optional Converter::operator()(const Convertible& value, Error bottom = util::clamp(*bottom, -90.0, 90.0); top = util::clamp(*top, -90.0, 90.0); if (top <= bottom){ - error = { "bounds bottom latitude must be between smaller than top latitude" }; + error = { "bounds bottom latitude must be smaller than top latitude" }; return {}; } -- cgit v1.2.1