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


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129897 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index cac5dae..1eb67a8 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/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);