Index: trunk/src/org/openstreetmap/josm/tools/Utils.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/Utils.java	(revision 11731)
+++ trunk/src/org/openstreetmap/josm/tools/Utils.java	(revision 11732)
@@ -1512,5 +1512,5 @@
     public static double clamp(double val, double min, double max) {
         if (min > max) {
-            throw new IllegalArgumentException(MessageFormat.format("Parameter min ({0}) cannot be greather than max ({1})", min, max));
+            throw new IllegalArgumentException(MessageFormat.format("Parameter min ({0}) cannot be greater than max ({1})", min, max));
         } else if (val < min) {
             return min;
@@ -1533,5 +1533,5 @@
     public static int clamp(int val, int min, int max) {
         if (min > max) {
-            throw new IllegalArgumentException(MessageFormat.format("Parameter min ({0}) cannot be greather than max ({1})", min, max));
+            throw new IllegalArgumentException(MessageFormat.format("Parameter min ({0}) cannot be greater than max ({1})", min, max));
         } else if (val < min) {
             return min;
