Skip to content

Commit

Permalink
Fixed order of coordinates access
Browse files Browse the repository at this point in the history
  • Loading branch information
noha committed Jul 12, 2021
1 parent 75a09aa commit 5b34c02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GeoJSON-Core.package/GJPoint.class/instance/latitude.st
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
accessing
latitude
^ coordinates first
^ coordinates second
2 changes: 1 addition & 1 deletion GeoJSON-Core.package/GJPoint.class/instance/longitude.st
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
accessing
longitude
^ coordinates second
^ coordinates first

0 comments on commit 5b34c02

Please sign in to comment.