[google_maps_flutter] Fixed typo in LatLngBounds constructor's documentation (#2042)

diff --git a/packages/google_maps_flutter/CHANGELOG.md b/packages/google_maps_flutter/CHANGELOG.md
index 0f6908e..856f7e3 100644
--- a/packages/google_maps_flutter/CHANGELOG.md
+++ b/packages/google_maps_flutter/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.5.21+16
+
+* Fixed typo in LatLng's documentation.
+
 ## 0.5.21+15
 
 * Remove the deprecated `author:` field from pubspec.yaml
diff --git a/packages/google_maps_flutter/lib/src/location.dart b/packages/google_maps_flutter/lib/src/location.dart
index 3d1452a..ae299ce 100644
--- a/packages/google_maps_flutter/lib/src/location.dart
+++ b/packages/google_maps_flutter/lib/src/location.dart
@@ -55,7 +55,7 @@
 /// * lat ∈ [`southwest.latitude`, `northeast.latitude`]
 /// * lng ∈ [`southwest.longitude`, `northeast.longitude`],
 ///   if `southwest.longitude` ≤ `northeast.longitude`,
-/// * lng ∈ [-180, `northeast.longitude`] ∪ [`southwest.longitude`, 180[,
+/// * lng ∈ [-180, `northeast.longitude`] ∪ [`southwest.longitude`, 180],
 ///   if `northeast.longitude` < `southwest.longitude`
 class LatLngBounds {
   /// Creates geographical bounding box with the specified corners.
diff --git a/packages/google_maps_flutter/pubspec.yaml b/packages/google_maps_flutter/pubspec.yaml
index f29c41c..a56c253 100644
--- a/packages/google_maps_flutter/pubspec.yaml
+++ b/packages/google_maps_flutter/pubspec.yaml
@@ -1,7 +1,7 @@
 name: google_maps_flutter
 description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
 homepage: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter
-version: 0.5.21+15
+version: 0.5.21+16
 
 dependencies:
   flutter: