perform: say "number" instead of "nr"

I think it's inconsistent that perform uses abbreviation "nr" of "number"
while it talks about "command" instead of "cmd".
This commit is contained in:
Mikaela Suomalainen
2015-09-19 08:40:53 +03:00
committed by J-P Nurmi
parent 6aed12f17d
commit f54ad1f220
+2 -2
View File
@@ -92,11 +92,11 @@ public:
AddCommand("Add", static_cast<CModCommand::ModCmdFunc>(&CPerform::Add),
"<command>");
AddCommand("Del", static_cast<CModCommand::ModCmdFunc>(&CPerform::Del),
"<nr>");
"<number>");
AddCommand("List", static_cast<CModCommand::ModCmdFunc>(&CPerform::List));
AddCommand("Execute", static_cast<CModCommand::ModCmdFunc>(&CPerform::Execute));
AddCommand("Swap", static_cast<CModCommand::ModCmdFunc>(&CPerform::Swap),
"<nr> <nr>");
"<number> <number>");
}
virtual ~CPerform() {}