Skip to content

Commit 1e4305e

Browse files
committed
docs(angular): change wording
1 parent cc3843f commit 1e4305e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

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

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

119119
## Displaying Photos
120120

121-
Return to `photo.service.ts`.
122-
123-
Outside of the `PhotoService` class definition (the very bottom of the file), create a new interface, `UserPhoto`, to hold our photo metadata:
121+
To define the data structure for our photo metadata, create a new interface named `UserPhoto`. Add this interface at the very bottom of the `photo.service.ts` file, immediately after the `PhotoService` class definition:
124122

125123
```ts
126124
export class PhotoService {

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

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

119119
## Displaying Photos
120120

121-
Return to `photo.service.ts`.
122-
123-
Outside of the `PhotoService` class definition (the very bottom of the file), create a new interface, `UserPhoto`, to hold our photo metadata:
121+
To define the data structure for our photo metadata, create a new interface named `UserPhoto`. Add this interface at the very bottom of the `photo.service.ts` file, immediately after the `PhotoService` class definition:
124122

125123
```ts
126124
export class PhotoService {

0 commit comments

Comments
 (0)