summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustyna Janczyszyn <4153982+jjanczyszyn@users.noreply.github.com>2018-07-19 20:08:29 +0200
committerKonstantin Käfer <mail@kkaefer.com>2018-07-31 16:21:20 +0200
commitbc568ab69257acde19d5038ec56fad00c851e5c7 (patch)
treeb7f5193254ce2586902c4995aa5f6b02346f9841
parentc94a98a1c29c145074211beeaca4667447e693a8 (diff)
downloadqtlocation-mapboxgl-bc568ab69257acde19d5038ec56fad00c851e5c7.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 {};
}