diff --git a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/SelectCommand.java b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/SelectCommand.java index 5498916fa0d..b867813e281 100644 --- a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/SelectCommand.java +++ b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/SelectCommand.java @@ -11,8 +11,8 @@ import java.util.function.Supplier; /** - * A command composition that runs one of a selection of commands, either using a selector and a key - * to command mapping, or a supplier that returns the command directly at runtime. + * A command composition that runs one of a selection of commands using a selector and a key + * to command mapping. * *

The rules for command compositions apply: command instances that are passed to it cannot be * added to any other composition or scheduled individually, and the composition requires all diff --git a/wpilibNewCommands/src/main/native/include/frc2/command/SelectCommand.h b/wpilibNewCommands/src/main/native/include/frc2/command/SelectCommand.h index 0bec3c34e3f..81f1296187c 100644 --- a/wpilibNewCommands/src/main/native/include/frc2/command/SelectCommand.h +++ b/wpilibNewCommands/src/main/native/include/frc2/command/SelectCommand.h @@ -24,9 +24,8 @@ namespace frc2 { /** - * A command composition that runs one of a selection of commands, either using - * a selector and a key to command mapping, or a supplier that returns the - * command directly at runtime. + * A command composition that runs one of a selection of commands using + * a selector and a key to command mapping. * *

The rules for command compositions apply: command instances that are * passed to it are owned by the composition and cannot be added to any other