Skip to content

Commit 2414d2f

Browse files
committed
docs(vue): change wording
1 parent 3b15eb1 commit 2414d2f

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,7 @@ After taking a photo, it disappears right away. We need to display it within our
107107

108108
## Displaying Photos
109109

110-
Return to `usePhotoGallery.ts`.
111-
112-
Outside of the `usePhotoGallery()` method definition (the very bottom of the file), create a new interface, `UserPhoto`, to hold our photo metadata.
110+
To define the data structure for our photo metadata, create a new interface named `UserPhoto`. Add this interface at the very bottom of the `usePhotoGallery.ts` file, immediately after the `usePhotoGallery()` method definition.
113111

114112
```ts
115113
export const usePhotoGallery = () => {

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,7 @@ After taking a photo, it disappears right away. We need to display it within our
107107

108108
## Displaying Photos
109109

110-
Return to `usePhotoGallery.ts`.
111-
112-
Outside of the `usePhotoGallery()` method definition (the very bottom of the file), create a new interface, `UserPhoto`, to hold our photo metadata.
110+
To define the data structure for our photo metadata, create a new interface named `UserPhoto`. Add this interface at the very bottom of the `usePhotoGallery.ts` file, immediately after the `usePhotoGallery()` method definition.
113111

114112
```ts
115113
export const usePhotoGallery = () => {

0 commit comments

Comments
 (0)