From d42780daca882656da6946a4ebe3faf6e7a295f1 Mon Sep 17 00:00:00 2001 From: Nogueron Matthieu Date: Thu, 16 Jun 2016 11:07:44 +0200 Subject: [PATCH] docs(toast): fix parameter type (#230) In the usage example the duration was displayed as a number instead of the actual string parameter. --- src/plugins/toast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/toast.ts b/src/plugins/toast.ts index 99d9723eb..2606a3307 100644 --- a/src/plugins/toast.ts +++ b/src/plugins/toast.ts @@ -47,7 +47,7 @@ export interface ToastOptions { * * * - * Toast.show("I'm a toast", 5000, "center").subscribe( + * Toast.show("I'm a toast", "5000", "center").subscribe( * toast => { * console.log(toast); * }