[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

@@ -206,7 +206,7 @@ class Command {
*
* @return the decorated command
*/
virtual RepeatCommand Repeat() &&;
virtual RepeatCommand Repeatedly() &&;
/**
* Decorates this command to run "by proxy" by wrapping it in a

View File

@@ -69,7 +69,7 @@ class RepeatCommand : public CommandHelper<CommandBase, RepeatCommand> {
bool RunsWhenDisabled() const override;
RepeatCommand Repeat() && override;
RepeatCommand Repeatedly() && override;
private:
std::unique_ptr<Command> m_command;