]> git.openstreetmap.org Git - rails.git/blobdiff - lib/bounding_box.rb
Fix new rubocop warnings
[rails.git] / lib / bounding_box.rb
index 3b366dc1ef5da4d8b7ea0be87f87da37141ada7b..1350d69babdd84c6e6691eb56a8217fb58378bc4 100644 (file)
@@ -64,7 +64,7 @@ class BoundingBox
 
     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}"
+                                    " and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}"
     end
     self
   end