Skip to content

Commit

Permalink
Updated javadocs.
Browse files Browse the repository at this point in the history
Signed-off-by: thenetworkgrinch <thenetworkgrinch@users.noreply.github.com>
  • Loading branch information
thenetworkgrinch committed Jan 6, 2025
1 parent 7596047 commit 8e2b36f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/swervelib/imu/ADIS16448Swerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ADIS16448Swerve extends SwerveIMU
*/
private final ADIS16448_IMU imu;
/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, DegreesPerSecond);
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swervelib/imu/ADIS16470Swerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ADIS16470Swerve extends SwerveIMU
*/
private final ADIS16470_IMU imu;
/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, DegreesPerSecond);
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swervelib/imu/ADXRS450Swerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ADXRS450Swerve extends SwerveIMU
*/
private final ADXRS450_Gyro imu;
/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, DegreesPerSecond);
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swervelib/imu/AnalogGyroSwerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class AnalogGyroSwerve extends SwerveIMU
*/
private final AnalogGyro imu;
/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, DegreesPerSecond);
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swervelib/imu/CanandgyroSwerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class CanandgyroSwerve extends SwerveIMU
*/
private final Canandgyro imu;
/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, RotationsPerSecond);
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/swervelib/imu/NavXSwerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class NavXSwerve extends SwerveIMU
{

/**
* Mutable {@link AngularVelocity} for readings.
* Mutable {@link MutAngularVelocity} for readings.
*/
private final MutAngularVelocity yawVel = new MutAngularVelocity(0, 0, DegreesPerSecond);
/**
Expand Down

0 comments on commit 8e2b36f

Please sign in to comment.