Skip to content

Commit 02b6bf5

Browse files
committed
fix doc
1 parent 474315b commit 02b6bf5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ n/a
99
0.3.0 (2014-04-13)
1010
------------------
1111

12-
* support provider's arugments
12+
* support provider's arugments (BC break)
1313

1414

1515
0.2.0 (2013-11-16)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,10 @@ Example with Facade
106106
// ...
107107
try {
108108
$geocode = Geocoder::geocode('10 rue Gambetta, Paris, France');
109-
// ...
109+
// The GoogleMapsProvider will return a result
110+
var_dump($geocode);
110111
} catch (\Exception $e) {
111-
// Here we will get "The FreeGeoIpProvider does not support Street addresses." ;)
112+
// No exception will be thrown here
112113
echo $e->getMessage();
113114
}
114115
```

0 commit comments

Comments
 (0)