diff --git a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java index 9ab640b0de..d23b87282f 100644 --- a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java +++ b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java @@ -450,7 +450,8 @@ public final class CommandScheduler implements Sendable, AutoCloseable { * requiring the subsystem * * @param subsystem the subsystem to be inquired about - * @return the command currently requiring the subsystem, or null if no command is currently scheduled + * @return the command currently requiring the subsystem, or null if no command is currently + * scheduled */ public Command requiring(Subsystem subsystem) { return m_requirements.get(subsystem);