[commands] Rename Command.repeat to repeatedly (#4379)

This commit is contained in:
OmegaMetor
2022-08-29 17:20:17 -05:00
committed by GitHub
parent 9e24c6eac0
commit f2a8d38d2a
8 changed files with 10 additions and 10 deletions

View File

@@ -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());
}

View File

@@ -40,6 +40,6 @@ bool RepeatCommand::RunsWhenDisabled() const {
return m_command->RunsWhenDisabled();
}
RepeatCommand RepeatCommand::Repeat() && {
RepeatCommand RepeatCommand::Repeatedly() && {
return std::move(*this);
}