From 82cfe33d8644eb33b157d162933fc09d1a0212c8 Mon Sep 17 00:00:00 2001 From: Guille Date: Fri, 3 Jun 2016 11:34:15 +0200 Subject: [PATCH] Update docs GoogleMaps -> GoogleMap --- src/plugins/googlemaps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index 2900196a2..128040a10 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!")); * ```