docs(toast): template literal in example usage (#1760)

The single quote needed to be escaped to providing proper syntax highlighting in documentation.
This commit is contained in:
Dhyey Thakore 2017-07-04 11:47:19 +05:30 committed by Ibby Hadeed
parent 3582e877d6
commit c972497475

View File

@ -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 => { * toast => {
* console.log(toast); * console.log(toast);
* } * }