docs(documentation): cosmetically improve the documentation

This commit is contained in:
Ken Sodemann
2017-09-25 21:37:41 -05:00
parent 4a71786684
commit ff7b05ed23
9 changed files with 26 additions and 35 deletions

View File

@@ -11,9 +11,9 @@
* import { NavParams } from 'ionic-angular';
*
* export class MyClass {
* constructor(public navParams: NavParams) {
* constructor(navParams: NavParams) {
* // userParams is an object we have in our nav-parameters
* this.navParams.get('userParams');
* const params = navParams.get('userParams');
* }
* }
* ```