[docs] Fix wpilibj JavaDoc warnings (#6154)

This commit is contained in:
Tyler Veness
2024-01-05 07:35:59 -08:00
committed by GitHub
parent 19cb2a8eb4
commit 106518c3f8
97 changed files with 1112 additions and 71 deletions

View File

@@ -36,14 +36,14 @@ class UltrasonicSim {
/**
* Sets if the range measurement is valid.
*
* @param isValid True if valid
* @param valid True if valid
*/
void SetRangeValid(bool isValid);
void SetRangeValid(bool valid);
/**
* Sets the range measurement
* Sets the range measurement.
*
* @param range The range
* @param range The range.
*/
void SetRange(units::inch_t range);