From 7af93d23b81ae70ce443c26fa08309c4ccf6eb2e Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Tue, 30 May 2017 17:39:37 +0200 Subject: [PATCH] docs(platform): change double quotes to single quotes (#11834) --- src/platform/platform.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/platform.ts b/src/platform/platform.ts index 09986fcf98..de28541d13 100644 --- a/src/platform/platform.ts +++ b/src/platform/platform.ts @@ -147,7 +147,7 @@ export class Platform { * constructor(public plt: Platform) { * if (this.plt.is('ios')) { * // This will only print when on iOS - * console.log("I'm an iOS device!"); + * console.log('I am an iOS device!'); * } * } * }