From 006884beddc1c437f9599dfe12af9c1626248a4e Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 28 Jun 2022 21:11:12 +0100 Subject: [PATCH 1/1] Fix new rubocop warning --- lib/bounding_box.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bounding_box.rb b/lib/bounding_box.rb index d6b5f45c8..d5d3d7849 100644 --- a/lib/bounding_box.rb +++ b/lib/bounding_box.rb @@ -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 -- 2.43.2