Skip to content

Commit

Permalink
docs(native-geocoder): fix docs (#1197)
Browse files Browse the repository at this point in the history
Change address to street in example
  • Loading branch information
Julien Moulin authored and ihadeed committed Mar 20, 2017
1 parent 55d6d11 commit 510cea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/native-geocoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Plugin, Cordova } from './plugin';
* import { NativeGeocoder, NativeGeocoderReverseResult, NativeGeocoderForwardResult } from 'ionic-native';
*
* NativeGeocoder.reverseGeocode(52.5072095, 13.1452818)
* .then((result: NativeGeocoderReverseResult) => console.log("The address is " + result.address + " in " + result.countryCode))
* .then((result: NativeGeocoderReverseResult) => console.log("The address is " + result.street + " in " + result.countryCode))
* .catch((error: any) => console.log(error));
*
* NativeGeocoder.forwardGeocode("Berlin")
Expand Down

0 comments on commit 510cea6

Please sign in to comment.