@@ -39,8 +39,8 @@ public static final int constrain(int amt, int low, int high) {
3939
4040 /**
4141 * Determines the smallest value in a sequence of numbers, and then returns that value.
42- * <b>min()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or an
43- * array of any length.
42+ * <b>min()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or
43+ * an array of any length.
4444 *
4545 * @param v values
4646 * @return the minimum
@@ -57,8 +57,8 @@ public static final double min(double... v) {
5757
5858 /**
5959 * Determines the largest value in a sequence of numbers, and then returns that value.
60- * <b>max()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or an
61- * array of any length.
60+ * <b>max()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or
61+ * an array of any length.
6262 *
6363 * @param v values
6464 * @return the maximum
@@ -75,8 +75,8 @@ public static final double max(double... v) {
7575
7676 /**
7777 * Determines the smallest value in a sequence of numbers, and then returns that value.
78- * <b>min()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or an
79- * array of any length.
78+ * <b>min()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or
79+ * an array of any length.
8080 *
8181 * @param v values
8282 * @return the minimum
@@ -93,8 +93,8 @@ public static final int min(int... v) {
9393
9494 /**
9595 * Determines the largest value in a sequence of numbers, and then returns that value.
96- * <b>max()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or an
97- * array of any length.
96+ * <b>max()</b> accepts either two or three <b>double</b> or <b>int</b> values as parameters, or
97+ * an array of any length.
9898 *
9999 * @param v values
100100 * @return the maximum
0 commit comments