Skip to content

Commit ba0292d

Browse files
committed
revert developer-resources edits
1 parent 8a1b684 commit ba0292d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/developer-resources/guides/first-app-v3/creating-photo-gallery-device-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Then, create a Photos array to represent our photo gallery:
4343
```Javascript
4444
export class PhotoProvider {
4545

46-
public photos: UserPhoto[] = [];
46+
public photos: Photo[] = [];
4747

4848
constructor() { }
4949
}

docs/developer-resources/guides/first-app-v4/creating-photo-gallery-device-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Then, create a Photos array to represent our photo gallery:
3838
```Javascript
3939
export class PhotoService {
4040

41-
public photos: UserPhoto[] = [];
41+
public photos: Photo[] = [];
4242

4343
constructor() { }
4444
}

versioned_docs/version-v5/developer-resources/guides/first-app-v3/creating-photo-gallery-device-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Then, create a Photos array to represent our photo gallery:
4343
```Javascript
4444
export class PhotoProvider {
4545

46-
public photos: UserPhoto[] = [];
46+
public photos: Photo[] = [];
4747

4848
constructor() { }
4949
}

versioned_docs/version-v5/developer-resources/guides/first-app-v4/creating-photo-gallery-device-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Then, create a Photos array to represent our photo gallery:
3838
```Javascript
3939
export class PhotoService {
4040

41-
public photos: UserPhoto[] = [];
41+
public photos: Photo[] = [];
4242

4343
constructor() { }
4444
}

0 commit comments

Comments
 (0)