Skip to content

Commit

Permalink
Flip north-east around
Browse files Browse the repository at this point in the history
  • Loading branch information
jsor committed May 21, 2015
1 parent b0dd256 commit 36c5fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bounds.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct(LatLng $southWest, LatLng $northEast)
$this->northEast = $northEast;

if ($this->southWest->getLatitude() > $this->northEast->getLatitude()) {
throw new \LogicException('Bounds south-west coordinate cannot be north of the east-north coordinate');
throw new \LogicException('Bounds south-west coordinate cannot be north of the north-east coordinate');
}
}

Expand Down

0 comments on commit 36c5fba

Please sign in to comment.