From b08711c0d571a95c36e21f4d836a24c445846a1d Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Fri, 7 Jun 2024 12:47:14 -0400 Subject: [PATCH] e --- .../src/main/java/edu/wpi/first/wpilibj2/command/Command.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/Command.java b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/Command.java index 255291b933e..2345dd846c6 100644 --- a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/Command.java +++ b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/Command.java @@ -21,7 +21,7 @@ * A state machine representing a complete action to be performed by the robot. Commands are run by * the {@link CommandScheduler}, and can be composed into CommandGroups to allow users to build * complicated multistep actions without the need to roll the state machine logic themselves. - * + * *
Commands are run synchronously from the main robot loop; no multithreading is used, unless * specified explicitly from the command implementation. *