Index: trunk/src/org/openstreetmap/josm/data/coor/ILatLon.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/coor/ILatLon.java	(revision 12728)
+++ trunk/src/org/openstreetmap/josm/data/coor/ILatLon.java	(revision 12729)
@@ -41,5 +41,5 @@
      * <p>Replies the projected east/north coordinates.</p>
      *
-     * <p>Uses the {@link Main#getProjection() global projection} to project the lan/lon-coordinates.</p>
+     * <p>Uses the {@link Main#getProjection() global projection} to project the lat/lon-coordinates.</p>
      *
      * @return the east north coordinates or {@code null} if #is
Index: trunk/src/org/openstreetmap/josm/data/osm/Node.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/Node.java	(revision 12728)
+++ trunk/src/org/openstreetmap/josm/data/osm/Node.java	(revision 12729)
@@ -103,5 +103,5 @@
      * Replies the projected east/north coordinates.
      * <p>
-     * Uses the {@link Main#getProjection() global projection} to project the lan/lon-coordinates.
+     * Uses the {@link Main#getProjection() global projection} to project the lat/lon-coordinates.
      * @return the east north coordinates or {@code null} if #is
      */
Index: trunk/test/unit/org/openstreetmap/josm/actions/upload/FixDataHookTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/actions/upload/FixDataHookTest.java	(revision 12728)
+++ trunk/test/unit/org/openstreetmap/josm/actions/upload/FixDataHookTest.java	(revision 12729)
@@ -46,5 +46,5 @@
         assertTrue(MainApplication.undoRedo.commands.isEmpty());
 
-        // Complete data set (except empty which cannot be tested anymore)
+        // Complete data set (except empty node which cannot be tested anymore)
         Way emptyWay = new Way();
         Relation emptyRelation = new Relation();
Index: trunk/test/unit/org/openstreetmap/josm/data/gpx/GpxDataTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/gpx/GpxDataTest.java	(revision 12728)
+++ trunk/test/unit/org/openstreetmap/josm/data/gpx/GpxDataTest.java	(revision 12729)
@@ -334,10 +334,10 @@
 
         WayPoint close = data.nearestPointOnTrack(new EastNorth(5, 5), 10);
-        assertEquals(10, close.getEastNorth().east(), .01);
-        assertEquals(5, close.getEastNorth().north(), .01);
+        assertEquals(10, close.getEastNorth(Main.getProjection()).east(), .01);
+        assertEquals(5, close.getEastNorth(Main.getProjection()).north(), .01);
 
         close = data.nearestPointOnTrack(new EastNorth(15, 5), 10);
-        assertEquals(10, close.getEastNorth().east(), .01);
-        assertEquals(5, close.getEastNorth().north(), .01);
+        assertEquals(10, close.getEastNorth(Main.getProjection()).east(), .01);
+        assertEquals(5, close.getEastNorth(Main.getProjection()).north(), .01);
 
         assertNull(data.nearestPointOnTrack(new EastNorth(5, 5), 1));
