From bd1173284be3553a3443c6afb1ed7c09a15c5d07 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 3 Mar 2016 20:39:20 -0600 Subject: [PATCH] docs(platform): fix import statements --- ionic/platform/platform.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ionic/platform/platform.ts b/ionic/platform/platform.ts index 24448ff47a..60092adc0f 100644 --- a/ionic/platform/platform.ts +++ b/ionic/platform/platform.ts @@ -12,7 +12,7 @@ import {Config} from '../config/config'; * * @usage * ```ts - * import {Platform} 'ionic-angular'; + * import {Platform} from 'ionic-angular'; * export MyClass { * constructor(platform: Platform){ * this.platform = platform; @@ -57,7 +57,7 @@ export class Platform { * Depending on the platform name, isPlatform will return true or flase * * ``` - * import {Platform} 'ionic-angular'; + * import {Platform} from 'ionic-angular'; * export MyClass { * constructor(platform: Platform){ * this.platform = platform; @@ -81,7 +81,7 @@ export class Platform { * it would return mobile, ios, and iphone. * * ``` - * import {Platform} 'ionic-angular'; + * import {Platform} from 'ionic-angular'; * export MyClass { * constructor(platform: Platform){ * this.platform = platform; @@ -103,7 +103,7 @@ export class Platform { * Returns an object containing information about the paltform * * ``` - * import {Platform} 'ionic-angular'; + * import {Platform} from 'ionic-angular'; * export MyClass { * constructor(platform: Platform){ * this.platform = platform; @@ -142,7 +142,7 @@ export class Platform { * Returns a promise when the platform is ready and native functionality can be called * * ``` - * import {Platform} 'ionic-angular'; + * import {Platform} from 'ionic-angular'; * export MyClass { * constructor(platform: Platform){ * this.platform = platform;