Fixed some more 'commands' to 'command' change.

llvm-svn: 129897
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index cac5dae..1eb67a8 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -163,7 +163,7 @@
     m_command_dict["apropos"]   = CommandObjectSP (new CommandObjectApropos (*this));
     m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
     //m_command_dict["call"]      = CommandObjectSP (new CommandObjectCall (*this));
-    m_command_dict["commands"]  = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
+    m_command_dict["command"]   = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
     m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
     m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
 //    m_command_dict["file"]      = CommandObjectSP (new CommandObjectFile (*this));
@@ -562,7 +562,7 @@
     if (m_alias_dict.size() > 0)
     {
         result.AppendMessage("The following is a list of your current command abbreviations "
-                             "(see 'help commands alias' for more info):");
+                             "(see 'help command alias' for more info):");
         result.AppendMessage("");
         max_len = FindLongestCommandWord (m_alias_dict);
 
diff --git a/lldb/test/abbreviation_tests/TestAbbreviations.py b/lldb/test/abbreviation_tests/TestAbbreviations.py
index 7423f8e..da58ee0 100644
--- a/lldb/test/abbreviation_tests/TestAbbreviations.py
+++ b/lldb/test/abbreviation_tests/TestAbbreviations.py
@@ -17,7 +17,7 @@
                     substrs = ['breakpoint command add',
                                'breakpoint command list',
                                'breakpoint list',
-                               'commands alias',
+                               'command alias',
                                'expression',
                                'script'])
 
diff --git a/lldb/test/alias_tests/TestAliases.py b/lldb/test/alias_tests/TestAliases.py
index b863e80..b53f0f0 100644
--- a/lldb/test/alias_tests/TestAliases.py
+++ b/lldb/test/alias_tests/TestAliases.py
@@ -53,8 +53,8 @@
 #                     substrs = [ "hello" ])
 
 
-        self.runCmd ("commands alias alias commands alias")
-        self.runCmd ("commands alias unalias commands unalias")
+        self.runCmd ("command alias alias command alias")
+        self.runCmd ("command alias unalias command unalias")
 
         self.runCmd ("alias myrun process launch -t%1 --")
         self.runCmd ("alias bp breakpoint")