Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
legoguy1000 committed Jan 23, 2024
1 parent f63f225 commit 9d669b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/lib/util/swerve/SwerveModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public Rotation2d getCanCoder() {
/**
* Gets the Swerve module state
*
* @return Swerve module state
* @return The current Swerve Module State {@link SwerveModuleState}
*/
public SwerveModuleState getState() {
double velocity = Conversions.falconToMPS(driveMotor.getSelectedSensorVelocity(),
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Swerve.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public Pose2d getPose() {
/**
* Get the current Swerve Module States
*
* @return The current {@link SwerveModuleStates}
* @return An array of the current {@link SwerveModuleState}
*/
public SwerveModuleState[] getModuleStates() {
SwerveModuleState[] states = new SwerveModuleState[swerveMods.length];
Expand Down

0 comments on commit 9d669b5

Please sign in to comment.