summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustyna Janczyszyn <4153982+jjanczyszyn@users.noreply.github.com>2018-07-19 20:08:29 +0200
committerJohn Firebaugh <john.firebaugh@gmail.com>2018-07-19 15:36:48 -0700
commite94c623e0393db4e04a2c53353456004d75778e6 (patch)
tree0a3dff849d3f9c70e45efe3877e64a92c8c1746d
parent5d7e3e24e565afffe2bc9db5029286b167f039ed (diff)
downloadqtlocation-mapboxgl-e94c623e0393db4e04a2c53353456004d75778e6.tar.gz
fixed typo in error message
-rw-r--r--src/mbgl/style/conversion/tileset.cpp2
1 files changed, 1 insertions, 1 deletions
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<Tileset> Converter<Tileset>::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 {};
}