Updated help text to refer to "commands alias"
instead of "alias." Also fixed a bunch of
indentation in the help for "commands alias."
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@110585 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index 3c0cd43..a4df061 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -533,7 +533,7 @@
if (m_alias_dict.size() > 0)
{
- result.AppendMessage("The following is a list of your current command abbreviations (see 'alias' for more info):");
+ result.AppendMessage("The following is a list of your current command abbreviations (see 'commands alias' for more info):");
result.AppendMessage("");
longest_word = FindLongestCommandWord (m_alias_dict);
max_len = strlen (longest_word.c_str());