competition fixes
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / MathLib.java
index 5269304da12d926bb211dd6d69f4050c2a74e30e..50cdd91d8376d6f905d4cf3b7be0368ae000d56f 100644 (file)
@@ -92,7 +92,7 @@ public class MathLib {
     }
   }
 
-  public static double limitValue(double val, double max, double min) {
+  public static double limitValue(double val, double min, double max) {
     if (val > max) {
       return max;
     } else if (val < min) {