Skip to content

Commit 5b67604

Browse files
committed
docs(angular): remove periods from comments
1 parent c19dbea commit 5b67604

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

docs/angular/your-first-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ We put the visual aspects of our app into `<ion-content>`. In this case, it’s
182182
</ion-toolbar>
183183
</ion-header>
184184

185-
<!-- CHANGE: Add the floating action button. -->
185+
<!-- CHANGE: Add the floating action button -->
186186
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
187187
<ion-fab-button>
188188
<ion-icon name="camera"></ion-icon>
189189
</ion-fab-button>
190190
</ion-fab>
191191

192-
<!-- CHANGE: Remove or comment out `app-explore-container`. -->
192+
<!-- CHANGE: Remove or comment out `app-explore-container` -->
193193
<!-- <app-explore-container name="Tab 2 page"></app-explore-container> -->
194194
</ion-content>
195195
```
@@ -205,9 +205,9 @@ Next, open `src/app/tabs/tabs.page.html`. Change the label to "Photos" and the `
205205
</ion-tab-button>
206206

207207
<ion-tab-button tab="tab2" href="/tabs/tab2">
208-
<!-- CHANGE: Update icon. -->
208+
<!-- CHANGE: Update icon -->
209209
<ion-icon aria-hidden="true" name="images"></ion-icon>
210-
<!-- CHANGE: Update label. -->
210+
<!-- CHANGE: Update label -->
211211
<ion-label>Photos</ion-label>
212212
</ion-tab-button>
213213

docs/angular/your-first-app/2-taking-photos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Then, open `tab2.page.html` and call the `addPhotoToGallery()` method when the F
103103
</ion-header>
104104

105105
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
106-
<!-- CHANGE: Add a click event listener to the floating action button. -->
106+
<!-- CHANGE: Add a click event listener to the floating action button -->
107107
<ion-fab-button (click)="addPhotoToGallery()">
108108
<ion-icon name="camera"></ion-icon>
109109
</ion-fab-button>
@@ -222,7 +222,7 @@ Next, switch to `tab2.page.html` to display the images. We'll add a [Grid compon
222222
<!-- CHANGE: Add a grid component to display the photos. -->
223223
<ion-grid>
224224
<ion-row>
225-
<!-- CHANGE: Create a new column and image component for each photo. -->
225+
<!-- CHANGE: Create a new column and image component for each photo -->
226226
<ion-col size="6" *ngFor="let photo of photoService.photos; index as position">
227227
<ion-img [src]="photo.webviewPath"></ion-img>
228228
</ion-col>

docs/angular/your-first-app/7-live-reload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Open `tab2.page.html` and add a new click handler to each `<ion-img>` element. W
147147
<ion-grid>
148148
<ion-row>
149149
<ion-col size="6" *ngFor="let photo of photoService.photos; index as position">
150-
<!-- CHANGE: Add a click event listener to each image. -->
150+
<!-- CHANGE: Add a click event listener to each image -->
151151
<ion-img [src]="photo.webviewPath" (click)="showActionSheet(photo, position)"></ion-img>
152152
</ion-col>
153153
</ion-row>

versioned_docs/version-v7/angular/your-first-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ We put the visual aspects of our app into `<ion-content>`. In this case, it’s
182182
</ion-toolbar>
183183
</ion-header>
184184

185-
<!-- CHANGE: Add the floating action button. -->
185+
<!-- CHANGE: Add the floating action button -->
186186
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
187187
<ion-fab-button>
188188
<ion-icon name="camera"></ion-icon>
189189
</ion-fab-button>
190190
</ion-fab>
191191

192-
<!-- CHANGE: Remove or comment out `app-explore-container`. -->
192+
<!-- CHANGE: Remove or comment out `app-explore-container` -->
193193
<!-- <app-explore-container name="Tab 2 page"></app-explore-container> -->
194194
</ion-content>
195195
```
@@ -205,9 +205,9 @@ Next, open `src/app/tabs/tabs.page.html`. Change the label to "Photos" and the `
205205
</ion-tab-button>
206206

207207
<ion-tab-button tab="tab2" href="/tabs/tab2">
208-
<!-- CHANGE: Update icon. -->
208+
<!-- CHANGE: Update icon -->
209209
<ion-icon aria-hidden="true" name="images"></ion-icon>
210-
<!-- CHANGE: Update label. -->
210+
<!-- CHANGE: Update label -->
211211
<ion-label>Photos</ion-label>
212212
</ion-tab-button>
213213

versioned_docs/version-v7/angular/your-first-app/2-taking-photos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Then, open `tab2.page.html` and call the `addPhotoToGallery()` method when the F
103103
</ion-header>
104104

105105
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
106-
<!-- CHANGE: Add a click event listener to the floating action button. -->
106+
<!-- CHANGE: Add a click event listener to the floating action button -->
107107
<ion-fab-button (click)="addPhotoToGallery()">
108108
<ion-icon name="camera"></ion-icon>
109109
</ion-fab-button>
@@ -222,7 +222,7 @@ Next, switch to `tab2.page.html` to display the images. We'll add a [Grid compon
222222
<!-- CHANGE: Add a grid component to display the photos. -->
223223
<ion-grid>
224224
<ion-row>
225-
<!-- CHANGE: Create a new column and image component for each photo. -->
225+
<!-- CHANGE: Create a new column and image component for each photo -->
226226
<ion-col size="6" *ngFor="let photo of photoService.photos; index as position">
227227
<ion-img [src]="photo.webviewPath"></ion-img>
228228
</ion-col>

versioned_docs/version-v7/angular/your-first-app/7-live-reload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Open `tab2.page.html` and add a new click handler to each `<ion-img>` element. W
147147
<ion-grid>
148148
<ion-row>
149149
<ion-col size="6" *ngFor="let photo of photoService.photos; index as position">
150-
<!-- CHANGE: Add a click event listener to each image. -->
150+
<!-- CHANGE: Add a click event listener to each image -->
151151
<ion-img [src]="photo.webviewPath" (click)="showActionSheet(photo, position)"></ion-img>
152152
</ion-col>
153153
</ion-row>

0 commit comments

Comments
 (0)