@@ -39,8 +39,8 @@ public static final int constrain(int amt, int low, int high) {
39
39
40
40
/**
41
41
* 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.
44
44
*
45
45
* @param v values
46
46
* @return the minimum
@@ -57,8 +57,8 @@ public static final double min(double... v) {
57
57
58
58
/**
59
59
* 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.
62
62
*
63
63
* @param v values
64
64
* @return the maximum
@@ -75,8 +75,8 @@ public static final double max(double... v) {
75
75
76
76
/**
77
77
* 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.
80
80
*
81
81
* @param v values
82
82
* @return the minimum
@@ -93,8 +93,8 @@ public static final int min(int... v) {
93
93
94
94
/**
95
95
* 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.
98
98
*
99
99
* @param v values
100
100
* @return the maximum
0 commit comments