From 64426502eacc96b604d231c4e6964f1fb3fede5b Mon Sep 17 00:00:00 2001 From: modelmat <25718989+modelmat@users.noreply.github.com> Date: Sat, 15 Jan 2022 07:53:45 +0000 Subject: [PATCH] [wpimath] Fix arm -> flywheel typo (NFC) (#3911) --- .../java/edu/wpi/first/math/system/plant/LinearSystemId.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpimath/src/main/java/edu/wpi/first/math/system/plant/LinearSystemId.java b/wpimath/src/main/java/edu/wpi/first/math/system/plant/LinearSystemId.java index f65f9c9fba..409be5d2f6 100644 --- a/wpimath/src/main/java/edu/wpi/first/math/system/plant/LinearSystemId.java +++ b/wpimath/src/main/java/edu/wpi/first/math/system/plant/LinearSystemId.java @@ -62,7 +62,7 @@ public final class LinearSystemId { * Create a state-space model of a flywheel system. The states of the system are [angular * velocity], inputs are [voltage], and outputs are [angular velocity]. * - * @param motor The motor (or gearbox) attached to the arm. + * @param motor The motor (or gearbox) attached to the flywheel. * @param jKgMetersSquared The moment of inertia J of the flywheel. * @param G The reduction between motor and drum, as a ratio of output to input. * @return A LinearSystem representing the given characterized constants.