summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustyna Janczyszyn <4153982+jjanczyszyn@users.noreply.github.com>2018-07-19 20:08:29 +0200
committerJustyna Janczyszyn <4153982+jjanczyszyn@users.noreply.github.com>2018-07-19 20:08:29 +0200
commitc686d11d7ca57567e3a09a45b9d04dba015b73b9 (patch)
tree0a3dff849d3f9c70e45efe3877e64a92c8c1746d
parent5d7e3e24e565afffe2bc9db5029286b167f039ed (diff)
downloadqtlocation-mapboxgl-upstream/fix/typo-error-message.tar.gz
fixed typo in error messageupstream/fix/typo-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 {};
}