Skip to content

Commit f1c8a32

Browse files
committed
Use coordinates of studio where muppets treasure island was filmed
1 parent 994f10e commit f1c8a32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/classes/return_multiple_values.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class Location {
1515

1616
Location findTreasureIsland() {
1717
Location location = new Location();
18-
location.latitude = 40.2085;
19-
location.longitude = -3.713;
18+
location.latitude = 51.4075;
19+
location.longitude = 0.4636;
2020
return location;
2121
}
2222

src/records/return_multiple_values.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A record is likely better for that purpose than a regular class.
99
record Location(double latitude, double longitude) {}
1010

1111
Location findTreasureIsland() {
12-
return new Location(40.2085, -3.713);
12+
return new Location(51.4075, 0.4636);
1313
}
1414

1515
void main() {

0 commit comments

Comments
 (0)