Skip to content

Commit 4cc2459

Browse files
committed
docs(): fix the the
1 parent 67edc1a commit 4cc2459

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ionic/components/action-sheet/action-sheet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ import {ViewController} from '../nav/view-controller';
122122
* this.nav.present(actionSheet);
123123
* ```
124124
*
125-
* It's important to note that the the handler returns `false`. A feature of
125+
* It's important to note that the handler returns `false`. A feature of
126126
* button handlers is that they automatically dismiss the action sheet when their button
127127
* was clicked, however, we'll need more control regarding the transition. Because
128128
* the handler returns `false`, then the action sheet does not automatically dismiss

ionic/components/alert/alert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ import {ViewController} from '../nav/view-controller';
175175
* this.nav.present(alert);
176176
* ```
177177
*
178-
* It's important to note that the the handler returns `false`. A feature of
178+
* It's important to note that the handler returns `false`. A feature of
179179
* button handlers is that they automatically dismiss the alert when their button
180180
* was clicked, however, we'll need more control regarding the transition. Because
181181
* the handler returns `false`, then the alert does not automatically dismiss

ionic/components/label/label.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import {Directive, ElementRef, Renderer, Input, Optional, Attribute} from 'angul
77
* Labels are placed inside of an `ion-item` element and can be used
88
* to describe an `ion-input`, `ion-toggle`, `ion-checkbox`, and more.
99
*
10-
* @property [fixed] - a persistant label that sits next the the input
11-
* @property [floating] - a label that will float about the input if the input is empty of looses focus
12-
* @property [stacked] - A stacked label will always appear on top of the input
10+
* @property [fixed] - A persistant label that sits next the input.
11+
* @property [floating] - A label that will float about the input if the input is empty of looses focus.
12+
* @property [stacked] - A stacked label will always appear on top of the input.
1313
1414
*
1515
* @usage

ionic/components/toast/toast.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class Toast extends ViewController {
8080
* | cssClass | `string` | Any additional class for the toast *(optional)* |
8181
* | showCloseButton | `boolean` | Whether or not to show an optional button to close the toast. *(optional)* |
8282
* | closeButtonText | `string` | Text to display in the close button. *(optional)* |
83-
* | enableBackdropDismiss | `boolean` | Whether the the toast should be dismissed by tapping the backdrop *(optional)* |
83+
* | enableBackdropDismiss | `boolean` | Whether the toast should be dismissed by tapping the backdrop *(optional)* |
8484
*
8585
* @param {object} ToastOptions Toast. See the above table for available options.
8686
*/

0 commit comments

Comments
 (0)