Skip to content

Commit ee1a9c7

Browse files
committed
docs(vue): remove periods from comments
1 parent b78bb35 commit ee1a9c7

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

docs/vue/your-first-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ We put the visual aspects of our app into `<ion-content>`. In this case, it’s
210210
</ion-toolbar>
211211
</ion-header>
212212
213-
<!-- CHANGE: Add the floating action button. -->
213+
<!-- CHANGE: Add the floating action button -->
214214
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
215215
<ion-fab-button>
216216
<ion-icon :icon="camera"></ion-icon>
@@ -247,9 +247,9 @@ Next, open `src/views/TabsPage.vue`. Change the label to "Photos" and the `ellip
247247
</ion-tab-button>
248248
249249
<ion-tab-button tab="tab2" href="/tabs/tab2">
250-
<!-- CHANGE: Update icon. -->
250+
<!-- CHANGE: Update icon -->
251251
<ion-icon aria-hidden="true" :icon="images" />
252-
<!-- CHANGE: Update label. -->
252+
<!-- CHANGE: Update label -->
253253
<ion-label>Photos</ion-label>
254254
</ion-tab-button>
255255

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,18 +209,18 @@ Next, switch to `Tab2Page.vue` to display the images. We'll add a [Grid componen
209209
</ion-toolbar>
210210
</ion-header>
211211
212-
<!-- CHANGE: Add a grid component to display the photos. -->
212+
<!-- CHANGE: Add a grid component to display the photos -->
213213
<ion-grid>
214214
<ion-row>
215-
<!-- CHANGE: Create a new column and image component for each photo. -->
215+
<!-- CHANGE: Create a new column and image component for each photo -->
216216
<ion-col size="6" :key="photo.filepath" v-for="photo in photos">
217217
<ion-img :src="photo.webviewPath"></ion-img>
218218
</ion-col>
219219
</ion-row>
220220
</ion-grid>
221221
222222
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
223-
<!-- CHANGE: Add a click event listener to the floating action button. -->
223+
<!-- CHANGE: Add a click event listener to the floating action button -->
224224
<ion-fab-button @click="addNewToGallery()">
225225
<ion-icon :icon="camera"></ion-icon>
226226
</ion-fab-button>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Add a click handler to the `<ion-img>` element. When the app user taps on a phot
155155
<ion-grid>
156156
<ion-row>
157157
<ion-col size="6" :key="photo.filepath" v-for="photo in photos">
158-
<!-- CHANGE: Add a click event listener to each image. -->
158+
<!-- CHANGE: Add a click event listener to each image -->
159159
<ion-img :src="photo.webviewPath" @click="showActionSheet(photo)"></ion-img>
160160
</ion-col>
161161
</ion-row>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ We put the visual aspects of our app into `<ion-content>`. In this case, it’s
210210
</ion-toolbar>
211211
</ion-header>
212212
213-
<!-- CHANGE: Add the floating action button. -->
213+
<!-- CHANGE: Add the floating action button -->
214214
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
215215
<ion-fab-button>
216216
<ion-icon :icon="camera"></ion-icon>
@@ -247,9 +247,9 @@ Next, open `src/views/TabsPage.vue`. Change the label to "Photos" and the `ellip
247247
</ion-tab-button>
248248
249249
<ion-tab-button tab="tab2" href="/tabs/tab2">
250-
<!-- CHANGE: Update icon. -->
250+
<!-- CHANGE: Update icon -->
251251
<ion-icon aria-hidden="true" :icon="images" />
252-
<!-- CHANGE: Update label. -->
252+
<!-- CHANGE: Update label -->
253253
<ion-label>Photos</ion-label>
254254
</ion-tab-button>
255255

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Next, in `Tab2Page.vue`, import the `usePhotoGallery()` method and destructure i
6060
</ion-header>
6161
6262
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
63-
<!-- CHANGE: Add a click event listener to the floating action button. -->
63+
<!-- CHANGE: Add a click event listener to the floating action button -->
6464
<ion-fab-button @click="addNewToGallery()">
6565
<ion-icon :icon="camera"></ion-icon>
6666
</ion-fab-button>
@@ -209,18 +209,18 @@ Next, switch to `Tab2Page.vue` to display the images. We'll add a [Grid componen
209209
</ion-toolbar>
210210
</ion-header>
211211
212-
<!-- CHANGE: Add a grid component to display the photos. -->
212+
<!-- CHANGE: Add a grid component to display the photos -->
213213
<ion-grid>
214214
<ion-row>
215-
<!-- CHANGE: Create a new column and image component for each photo. -->
215+
<!-- CHANGE: Create a new column and image component for each photo -->
216216
<ion-col size="6" :key="photo.filepath" v-for="photo in photos">
217217
<ion-img :src="photo.webviewPath"></ion-img>
218218
</ion-col>
219219
</ion-row>
220220
</ion-grid>
221221
222222
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
223-
<!-- CHANGE: Add a click event listener to the floating action button. -->
223+
<!-- CHANGE: Add a click event listener to the floating action button -->
224224
<ion-fab-button @click="addNewToGallery()">
225225
<ion-icon :icon="camera"></ion-icon>
226226
</ion-fab-button>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Add a click handler to the `<ion-img>` element. When the app user taps on a phot
155155
<ion-grid>
156156
<ion-row>
157157
<ion-col size="6" :key="photo.filepath" v-for="photo in photos">
158-
<!-- CHANGE: Add a click event listener to each image. -->
158+
<!-- CHANGE: Add a click event listener to each image -->
159159
<ion-img :src="photo.webviewPath" @click="showActionSheet(photo)"></ion-img>
160160
</ion-col>
161161
</ion-row>

0 commit comments

Comments
 (0)