docs(): fix spelling

This commit is contained in:
Adam Bradley
2016-01-08 21:09:05 -06:00
parent ca678c0af8
commit d4cf6d83f2
2 changed files with 7 additions and 7 deletions

View File

@ -47,8 +47,8 @@ import {Option} from '../option/option';
* selected option values. * selected option values.
* *
* ```html * ```html
* <ion-select [(ngModel)]="topings" multiple="true"> * <ion-select [(ngModel)]="toppings" multiple="true">
* <ion-label>Topings</ion-label> * <ion-label>Toppings</ion-label>
* <ion-option value="bacon">Bacon</ion-option> * <ion-option value="bacon">Bacon</ion-option>
* <ion-option value="olives">Black Olives</ion-option> * <ion-option value="olives">Black Olives</ion-option>
* <ion-option value="xcheese">Extra Cheese</ion-option> * <ion-option value="xcheese">Extra Cheese</ion-option>
@ -83,8 +83,8 @@ import {Option} from '../option/option';
* *
* ```ts * ```ts
* this.alertOptions = { * this.alertOptions = {
* title: 'Pizza Topings', * title: 'Pizza Toppings',
* subTitle: 'Select your topings' * subTitle: 'Select your toppings'
* }; * };
* ``` * ```
* *

View File

@ -2,8 +2,8 @@
<ion-content class="outer-content"> <ion-content class="outer-content">
<ion-select [(ngModel)]="topings" multiple="true" cancelText="Nah" okText="Okay!"> <ion-select [(ngModel)]="toppings" multiple="true" cancelText="Nah" okText="Okay!">
<ion-label>Topings</ion-label> <ion-label>Toppings</ion-label>
<ion-option value="bacon">Bacon</ion-option> <ion-option value="bacon">Bacon</ion-option>
<ion-option value="olives">Black Olives</ion-option> <ion-option value="olives">Black Olives</ion-option>
<ion-option value="xcheese">Extra Cheese</ion-option> <ion-option value="xcheese">Extra Cheese</ion-option>
@ -27,7 +27,7 @@
</ion-select> </ion-select>
<p aria-hidden="true" padding> <p aria-hidden="true" padding>
<code>topings: {{topings}}</code><br> <code>toppings: {{toppings}}</code><br>
<code>carOptions: {{carOptions}}</code><br> <code>carOptions: {{carOptions}}</code><br>
</p> </p>