From f54ad1f22075940dff3b6ec6d4c39e92425793d7 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 19 Sep 2015 08:40:53 +0300 Subject: [PATCH] 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". --- modules/perform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/perform.cpp b/modules/perform.cpp index fbf7cbaa..419ee4f6 100644 --- a/modules/perform.cpp +++ b/modules/perform.cpp @@ -92,11 +92,11 @@ public: AddCommand("Add", static_cast(&CPerform::Add), ""); AddCommand("Del", static_cast(&CPerform::Del), - ""); + ""); AddCommand("List", static_cast(&CPerform::List)); AddCommand("Execute", static_cast(&CPerform::Execute)); AddCommand("Swap", static_cast(&CPerform::Swap), - " "); + " "); } virtual ~CPerform() {}