@@ -65,7 +65,7 @@ public int compare(final Object obj1, final Object obj2) {
6565 * <p>The range uses the natural ordering of the elements to determine where
6666 * values lie in the range.</p>
6767 *
68- * <p>The arguments may be passed in the order (min,max) or (max,min).
68+ * <p>The arguments may be passed in the order (min, max) or (max, min).
6969 * The getMinimum and getMaximum methods will return the correct values.</p>
7070 *
7171 * @param <T> the type of the elements in this range.
@@ -88,7 +88,7 @@ public static <T extends Comparable<? super T>> Range<T> between(final T fromInc
8888 * <p>The range uses the specified {@link Comparator} to determine where
8989 * values lie in the range.</p>
9090 *
91- * <p>The arguments may be passed in the order (min,max) or (max,min).
91+ * <p>The arguments may be passed in the order (min, max) or (max, min).
9292 * The getMinimum and getMaximum methods will return the correct values.</p>
9393 *
9494 * @param <T> the type of the elements in this range.
@@ -147,7 +147,7 @@ public static <T> Range<T> is(final T element, final Comparator<T> comparator) {
147147 * <p>The range uses the natural ordering of the elements to determine where
148148 * values lie in the range.</p>
149149 *
150- * <p>The arguments may be passed in the order (min,max) or (max,min).
150+ * <p>The arguments may be passed in the order (min, max) or (max, min).
151151 * The getMinimum and getMaximum methods will return the correct values.</p>
152152 *
153153 * @param <T> the type of the elements in this range.
@@ -168,7 +168,7 @@ public static <T extends Comparable<? super T>> Range<T> of(final T fromInclusiv
168168 * <p>The range uses the specified {@link Comparator} to determine where
169169 * values lie in the range.</p>
170170 *
171- * <p>The arguments may be passed in the order (min,max) or (max,min).
171+ * <p>The arguments may be passed in the order (min, max) or (max, min).
172172 * The getMinimum and getMaximum methods will return the correct values.</p>
173173 *
174174 * @param <T> the type of the elements in this range.
0 commit comments