Skip to content

Commit f563ead

Browse files
docs: correct alphabetization in 03-landmarks/solution.ts
1 parent 549ddeb commit f563ead

File tree

1 file changed

+5
-5
lines changed
  • projects/interfaces/vacation-planning/03-landmarks

1 file changed

+5
-5
lines changed

projects/interfaces/vacation-planning/03-landmarks/solution.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ export interface Lighthouse extends BaseLandmark {
1717
type: "lighthouse";
1818
}
1919

20-
export interface Park extends BaseLandmark {
21-
acres: number;
22-
type: "park";
23-
}
24-
2520
export interface Mountain extends BaseLandmark {
2621
height: number;
2722
type: "mountain";
2823
}
2924

25+
export interface Park extends BaseLandmark {
26+
acres: number;
27+
type: "park";
28+
}
29+
3030
export interface River extends BaseLandmark {
3131
depth: number;
3232
length: number;

0 commit comments

Comments
 (0)