Index: trunk/test/unit/org/openstreetmap/josm/actions/CreateCircleActionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/actions/CreateCircleActionTest.java	(revision 17332)
+++ trunk/test/unit/org/openstreetmap/josm/actions/CreateCircleActionTest.java	(revision 17333)
@@ -55,5 +55,5 @@
         dataSet.addPrimitive(n3);
 
-        Way w = new Way(); // Way is Clockwize
+        Way w = new Way(); // Way is clockwise
         w.setNodes(Arrays.asList(new Node[] {n1, n2, n3}));
         dataSet.addPrimitive(w);
Index: trunk/test/unit/org/openstreetmap/josm/command/PurgeCommandTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/command/PurgeCommandTest.java	(revision 17332)
+++ trunk/test/unit/org/openstreetmap/josm/command/PurgeCommandTest.java	(revision 17333)
@@ -111,5 +111,5 @@
                 Arrays.<OsmPrimitive>asList(testData.existingRelation));
         command.fillModifiedData(modified, deleted, added);
-        // intentianally empty (?)
+        // intentionally empty (?)
         assertArrayEquals(new Object[] {}, modified.toArray());
         assertArrayEquals(new Object[] {}, deleted.toArray());
Index: trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetCacheTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetCacheTest.java	(revision 17332)
+++ trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetCacheTest.java	(revision 17333)
@@ -144,5 +144,5 @@
 
     @Test
-    void testFireingEventsAddAChangeset() {
+    void testFiringEventsAddAChangeset() {
         TestListener listener = new TestListener() {
             @Override
@@ -163,5 +163,5 @@
 
     @Test
-    void testFireingEventsUpdateChangeset() {
+    void testFiringEventsUpdateChangeset() {
         // Waiter listener to ensure the second listener does not receive the first event
         TestListener waiter = new TestListener() {
@@ -195,5 +195,5 @@
 
     @Test
-    void testFireingEventsRemoveChangeset() {
+    void testFiringEventsRemoveChangeset() {
         // Waiter listener to ensure the second listener does not receive the first event
         TestListener waiter = new TestListener() {
Index: trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java	(revision 17332)
+++ trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java	(revision 17333)
@@ -298,6 +298,6 @@
             try (BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(stdin, StandardCharsets.UTF_8))) {
                 String s = String.format("%s %s%n",
-                        LatLon.cDdHighPecisionFormatter.format(ll.lon()),
-                        LatLon.cDdHighPecisionFormatter.format(ll.lat()));
+                        LatLon.cDdHighPrecisionFormatter.format(ll.lon()),
+                        LatLon.cDdHighPrecisionFormatter.format(ll.lat()));
                 if (debug) {
                     System.out.println("\n" + String.join(" ", args) + "\n" + s);
Index: trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionTest.java	(revision 17332)
+++ trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionTest.java	(revision 17333)
@@ -68,5 +68,5 @@
 
     /**
-     * Test {@link Op#EQ} and interpetation as key
+     * Test {@link Op#EQ} and interpretation as key
      */
     @Test
Index: trunk/test/unit/org/openstreetmap/josm/io/OverpassDownloadReaderTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/io/OverpassDownloadReaderTest.java	(revision 17332)
+++ trunk/test/unit/org/openstreetmap/josm/io/OverpassDownloadReaderTest.java	(revision 17333)
@@ -20,5 +20,5 @@
 import org.openstreetmap.josm.TestUtils;
 import org.openstreetmap.josm.data.Bounds;
-import org.openstreetmap.josm.io.OverpassDownloadReader.OverpassOutpoutFormat;
+import org.openstreetmap.josm.io.OverpassDownloadReader.OverpassOutputFormat;
 import org.openstreetmap.josm.testutils.JOSMTestRules;
 import org.openstreetmap.josm.tools.SearchCompilerQueryWizard;
@@ -157,5 +157,5 @@
     @Test
     public void testOutputFormatStatement() {
-        for (OverpassOutpoutFormat oof : OverpassOutpoutFormat.values()) {
+        for (OverpassOutputFormat oof : OverpassOutputFormat.values()) {
             Matcher m = OverpassDownloadReader.OUTPUT_FORMAT_STATEMENT.matcher("[out:"+oof.getDirective()+"]");
             assertTrue(m.matches());
