]> git.openstreetmap.org Git - rails.git/commitdiff
Fix new rubocop warning
authorTom Hughes <tom@compton.nu>
Tue, 28 Jun 2022 20:11:12 +0000 (21:11 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 28 Jun 2022 20:11:12 +0000 (21:11 +0100)
lib/bounding_box.rb

index d6b5f45c82ba51e049fc0c131f1235241a83a239..d5d3d784965aae2da4f009050de70c1a64af0693 100644 (file)
@@ -63,8 +63,8 @@ class BoundingBox
     raise OSM::APIBadBoundingBox, "The minimum latitude must be less than the maximum latitude, but it wasn't" if min_lat > max_lat
 
     if min_lon < -LON_LIMIT || min_lat < -LAT_LIMIT || max_lon > +LON_LIMIT || max_lat > +LAT_LIMIT
-      raise OSM::APIBadBoundingBox, "The latitudes must be between #{-LAT_LIMIT} and #{LAT_LIMIT}," \
-                                    " and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}"
+      raise OSM::APIBadBoundingBox, "The latitudes must be between #{-LAT_LIMIT} and #{LAT_LIMIT}, " \
+                                    "and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}"
     end
     self
   end