Skip to content

Commit d63aad0

Browse files
fixing informal language
1 parent a9fb9cd commit d63aad0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/section-7/feedforward-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Once you have gotten good data and analysis, you should obtain kS, kV, kA and PI
174174

175175
## Implementation
176176

177-
WPILIB provides a [SimpleMotorFeedforward](https://github.wpilib.org/allwpilib/docs/release/java/edu/wpi/first/math/controller/SimpleMotorFeedforward.html) class that runs feedforward for a motor. After you obtain your feedforward constants (kS, kV, kA) from SysID, you throw them into the constructor of the `SimpleMotorFeedforward` and use the listed methods.
177+
WPILIB provides a [SimpleMotorFeedforward](https://github.wpilib.org/allwpilib/docs/release/java/edu/wpi/first/math/controller/SimpleMotorFeedforward.html) class that runs feedforward for a motor. After you obtain your feedforward constants (kS, kV, kA) from SysID, you put them into the constructor of the `SimpleMotorFeedforward` and use the listed methods.
178178
```java
179179
// Create a new SimpleMotorFeedforward with gains kS, kV, and kA
180180
SimpleMotorFeedforward feedforward = new SimpleMotorFeedforward(kS, kV, kA);

0 commit comments

Comments
 (0)