Skip to content

Commit 6c2be1a

Browse files
author
NoahAndrews
committed
Grammar fix
1 parent d0ea56f commit 6c2be1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/frc/robot/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static final class ModuleConstants {
6767
// robot that drives faster).
6868
public static final int kMotorPinionTeeth = 14;
6969

70-
// Invert the turning encoder, since the output shaft rotates the opposite direction compared to
70+
// Invert the turning encoder, since the output shaft rotates in the opposite direction of
7171
// the steering motor in the MAXSwerve Module.
7272
public static final boolean kTurningEncoderInverted = true;
7373

src/main/java/frc/robot/subsystems/MAXSwerveModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public MAXSwerveModule(int drivingCANId, int turningCANId, double chassisAngular
6565
m_turningEncoder.setPositionConversionFactor(ModuleConstants.kTurningEncoderPositionFactor);
6666
m_turningEncoder.setVelocityConversionFactor(ModuleConstants.kTurningEncoderVelocityFactor);
6767

68-
// Invert the turning encoder, since the output shaft rotates the opposite direction compared to
68+
// Invert the turning encoder, since the output shaft rotates in the opposite direction of
6969
// the steering motor in the MAXSwerve Module.
7070
m_turningEncoder.setInverted(ModuleConstants.kTurningEncoderInverted);
7171

0 commit comments

Comments
 (0)