diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index 2900196a..128040a1 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -38,12 +38,12 @@ export const GoogleMapsAnimation = { * @description This plugin uses the native Google Maps SDK * @usage * ``` - * import {GoogleMaps, GoogleMapsEvent} from 'ionic-native'; + * import {GoogleMap, GoogleMapsEvent} from 'ionic-native'; * * ... * * // somewhere in your component - * let map = new GoogleMaps('elementID'); + * let map = new GoogleMap('elementID'); * * map.on(GoogleMapsEvent.MAP_READY).subscribe(() => console.log("Map is ready!")); * ```