AP_MotorsUGV: minor comment fix

This commit is contained in:
Randy Mackay 2018-05-05 10:10:59 +09:00
parent 524d63522a
commit 8137001a86

View File

@ -169,7 +169,7 @@ void AP_MotorsUGV::set_throttle(float throttle)
return; return;
} }
// check throttle is between -_throttle_max ~ +_throttle_max but outside -throttle_min ~ +throttle_min // check throttle is between -_throttle_max and +_throttle_max
_throttle = constrain_float(throttle, -_throttle_max, _throttle_max); _throttle = constrain_float(throttle, -_throttle_max, _throttle_max);
} }