Skip to content

Commit 6c3e31a

Browse files
decisions were made
1 parent 015af8a commit 6c3e31a

File tree

1 file changed

+16
-16
lines changed
  • src/main/java/com/spikes2212/command/drivetrains/commands

1 file changed

+16
-16
lines changed

src/main/java/com/spikes2212/command/drivetrains/commands/DriveTank.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class DriveTank extends CommandBase {
2626
*
2727
* @param drivetrain the tank drivetrain this command operates on
2828
* @param leftSpeedSupplier the double {@link Supplier} supplying the left side's speed (-1 to 1).
29-
* Positive values go forwards
29+
* Positive values go forward
3030
* @param rightSpeedSupplier the double {@link Supplier} supplying the right side's speed (-1 to 1).
31-
* Positive values go forwards
31+
* Positive values go forward
3232
* @param isFinished when to finish the command
3333
* @param squareInputs whether to square the speed suppliers' values
3434
*/
@@ -49,9 +49,9 @@ public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
4949
*
5050
* @param drivetrain the tank drivetrain this command operates on
5151
* @param leftSpeedSupplier the double {@link Supplier} supplying the left side's speed (-1 to 1).
52-
* Positive values go forwards
52+
* Positive values go forward
5353
* @param rightSpeedSupplier the double {@link Supplier} supplying the right side's speed (-1 to 1).
54-
* Positive values go forwards
54+
* Positive values go forward
5555
* @param isFinished when to finish the command
5656
*/
5757
public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
@@ -66,9 +66,9 @@ public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
6666
*
6767
* @param drivetrain the tank drivetrain this command operates on
6868
* @param leftSpeedSupplier the double {@link Supplier} supplying the left side's speed (-1 to 1).
69-
* Positive values go forwards
69+
* Positive values go forward
7070
* @param rightSpeedSupplier the double {@link Supplier} supplying the right side's speed (-1 to 1).
71-
* Positive values go forwards
71+
* Positive values go forward
7272
* @param squareInputs whether to square the speed suppliers' values
7373
*/
7474
public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
@@ -83,9 +83,9 @@ public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
8383
*
8484
* @param drivetrain the tank drivetrain this command operates on
8585
* @param leftSpeedSupplier the double {@link Supplier} supplying the left side's speed (-1 to 1).
86-
* Positive values go forwards
86+
* Positive values go forward
8787
* @param rightSpeedSupplier the double {@link Supplier} supplying the right side's speed (-1 to 1).
88-
* Positive values go forwards
88+
* Positive values go forward
8989
*/
9090
public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
9191
Supplier<Double> rightSpeedSupplier) {
@@ -98,8 +98,8 @@ public DriveTank(TankDrivetrain drivetrain, Supplier<Double> leftSpeedSupplier,
9898
* Positive values move the drivetrain forward.
9999
*
100100
* @param drivetrain the tank drivetrain this command operates on
101-
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forwards
102-
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forwards
101+
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forward
102+
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forward
103103
* @param isFinished when to finish the command
104104
* @param squareInputs whether to square the speed values
105105
*/
@@ -114,8 +114,8 @@ public DriveTank(TankDrivetrain drivetrain, double leftSpeed,
114114
* Positive values move the drivetrain forward. Does not square the inputs.
115115
*
116116
* @param drivetrain the tank drivetrain this command operates on
117-
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forwards
118-
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forwards
117+
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forward
118+
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forward
119119
* @param isFinished when to finish the command
120120
*/
121121
public DriveTank(TankDrivetrain drivetrain, double leftSpeed, double rightSpeed, Supplier<Boolean> isFinished) {
@@ -128,8 +128,8 @@ public DriveTank(TankDrivetrain drivetrain, double leftSpeed, double rightSpeed,
128128
* Positive values move the drivetrain forward.
129129
*
130130
* @param drivetrain the tank drivetrain this command operates on
131-
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forwards
132-
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forwards
131+
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forward
132+
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forward
133133
* @param squareInputs whether to square the speed values
134134
*/
135135
public DriveTank(TankDrivetrain drivetrain, double leftSpeed, double rightSpeed, boolean squareInputs) {
@@ -142,8 +142,8 @@ public DriveTank(TankDrivetrain drivetrain, double leftSpeed, double rightSpeed,
142142
* Positive values move the drivetrain forward. Does not square the inputs.
143143
*
144144
* @param drivetrain the tank drivetrain this command operates on
145-
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forwards
146-
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forwards
145+
* @param leftSpeed the left side's speed (-1 to 1). Positive values go forward
146+
* @param rightSpeed the right side's speed (-1 to 1). Positive values go forward
147147
*/
148148
public DriveTank(TankDrivetrain drivetrain, double leftSpeed, double rightSpeed) {
149149
this(drivetrain, leftSpeed, rightSpeed, () -> false, false);

0 commit comments

Comments
 (0)