diff options
author | Justyna Janczyszyn <4153982+jjanczyszyn@users.noreply.github.com> | 2018-07-19 20:08:29 +0200 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2018-07-19 15:36:48 -0700 |
commit | e94c623e0393db4e04a2c53353456004d75778e6 (patch) | |
tree | 0a3dff849d3f9c70e45efe3877e64a92c8c1746d | |
parent | 5d7e3e24e565afffe2bc9db5029286b167f039ed (diff) | |
download | qtlocation-mapboxgl-e94c623e0393db4e04a2c53353456004d75778e6.tar.gz |
fixed typo in error message
-rw-r--r-- | src/mbgl/style/conversion/tileset.cpp | 2 |
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 {}; } |