docs(toast): fix parameter type (#230)

In the usage example the duration was displayed as a number instead of the actual string parameter.
This commit is contained in:
Nogueron Matthieu 2016-06-16 11:07:44 +02:00 committed by Ibrahim Hadeed
parent e8a108d92d
commit d42780daca

View File

@ -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);
* }