From c9724974757e9ee4af52b85cd6c6652b106380ce Mon Sep 17 00:00:00 2001 From: Dhyey Thakore Date: Tue, 4 Jul 2017 11:47:19 +0530 Subject: [PATCH] docs(toast): template literal in example usage (#1760) The single quote needed to be escaped to providing proper syntax highlighting in documentation. --- src/@ionic-native/plugins/toast/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/toast/index.ts b/src/@ionic-native/plugins/toast/index.ts index 9cfea2b1e..41d5a443e 100644 --- a/src/@ionic-native/plugins/toast/index.ts +++ b/src/@ionic-native/plugins/toast/index.ts @@ -51,7 +51,7 @@ export interface ToastOptions { * * ... * - * this.toast.show('I'm a toast', '5000', 'center').subscribe( + * this.toast.show(`I'm a toast`, '5000', 'center').subscribe( * toast => { * console.log(toast); * }