mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[commands] Rename Command.repeat to repeatedly (#4379)
This commit is contained in:
@@ -116,7 +116,7 @@ EndlessCommand Command::Endlessly() && {
|
||||
return EndlessCommand(std::move(*this).TransferOwnership());
|
||||
}
|
||||
|
||||
RepeatCommand Command::Repeat() && {
|
||||
RepeatCommand Command::Repeatedly() && {
|
||||
return RepeatCommand(std::move(*this).TransferOwnership());
|
||||
}
|
||||
|
||||
|
||||
@@ -40,6 +40,6 @@ bool RepeatCommand::RunsWhenDisabled() const {
|
||||
return m_command->RunsWhenDisabled();
|
||||
}
|
||||
|
||||
RepeatCommand RepeatCommand::Repeat() && {
|
||||
RepeatCommand RepeatCommand::Repeatedly() && {
|
||||
return std::move(*this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user