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;