diff --git a/wpilibNewCommands/src/main/native/include/frc2/command/Commands.h b/wpilibNewCommands/src/main/native/include/frc2/command/Commands.h index e08fe6b625b..fd901292ab7 100644 --- a/wpilibNewCommands/src/main/native/include/frc2/command/Commands.h +++ b/wpilibNewCommands/src/main/native/include/frc2/command/Commands.h @@ -143,7 +143,8 @@ CommandPtr Print(std::string_view msg); * * @param supplier the command supplier */ -[[nodiscard]] CommandPtr Proxy(wpi::unique_function supplier); +[[nodiscard]] +CommandPtr Proxy(wpi::unique_function supplier); /** * Constructs a command that schedules the supplied command when initialized, @@ -151,7 +152,8 @@ CommandPtr Print(std::string_view msg); * * @param supplier the command supplier */ -[[nodiscard]] CommandPtr Proxy(wpi::unique_function supplier); +[[nodiscard]] +CommandPtr Proxy(wpi::unique_function supplier); // Idling Commands