diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-04-21 00:39:18 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-21 00:39:18 +0000 |
| commit | b89982d6961b28c23d06cd18c160008b3e7c76cb (patch) | |
| tree | 9f9906921a8bf15f4a8da42396d777b5cf8a67c0 /lldb/source/Interpreter | |
| parent | b2ed28ea4b61f359354b2f62c44177f77b55bc9d (diff) | |
| download | bcm5719-llvm-b89982d6961b28c23d06cd18c160008b3e7c76cb.tar.gz bcm5719-llvm-b89982d6961b28c23d06cd18c160008b3e7c76cb.zip | |
Fixed some more 'commands' to 'command' change.
llvm-svn: 129897
Diffstat (limited to 'lldb/source/Interpreter')
| -rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index cac5daee7bc..1eb67a8ca59 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -163,7 +163,7 @@ CommandInterpreter::LoadCommandDictionary () 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 @@ CommandInterpreter::GetHelp (CommandReturnObject &result) 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); |

