[wpimath] Fix misspelled Javadoc parameters in pose estimators (NFC) (#5292)

This commit is contained in:
Sriman Achanta
2023-04-28 23:51:47 -04:00
committed by GitHub
parent f53c6813d5
commit ba8c64bcff
3 changed files with 4 additions and 4 deletions

View File

@@ -339,7 +339,7 @@ public class DifferentialDrivePoseEstimator {
/**
* Constructs an Interpolation Record with the specified parameters.
*
* @param pose The pose observed given the current sensor inputs and the previous pose.
* @param poseMeters The pose observed given the current sensor inputs and the previous pose.
* @param gyro The current gyro angle.
* @param leftMeters The distance traveled by the left encoder.
* @param rightMeters The distanced traveled by the right encoder.

View File

@@ -316,7 +316,7 @@ public class MecanumDrivePoseEstimator {
/**
* Constructs an Interpolation Record with the specified parameters.
*
* @param pose The pose observed given the current sensor inputs and the previous pose.
* @param poseMeters The pose observed given the current sensor inputs and the previous pose.
* @param gyro The current gyro angle.
* @param wheelPositions The distances traveled by each wheel encoder.
*/

View File

@@ -324,9 +324,9 @@ public class SwerveDrivePoseEstimator {
/**
* Constructs an Interpolation Record with the specified parameters.
*
* @param pose The pose observed given the current sensor inputs and the previous pose.
* @param poseMeters The pose observed given the current sensor inputs and the previous pose.
* @param gyro The current gyro angle.
* @param wheelPositions The distances and rotations measured at each wheel.
* @param modulePositions The distances and rotations measured at each wheel.
*/
private InterpolationRecord(
Pose2d poseMeters, Rotation2d gyro, SwerveModulePosition[] modulePositions) {