Fixed a missing space when using the "apropos" command and you don't find any matches.

llvm-svn: 116133
This commit is contained in:
Greg Clayton 2010-10-09 00:51:35 +00:00
parent 74f6e9f523
commit b7c046248c
1 changed files with 1 additions and 2 deletions

View File

@ -73,8 +73,7 @@ CommandObjectApropos::Execute
m_interpreter.FindCommandsForApropos (search_word, commands_found, commands_help);
if (commands_found.GetSize() == 0)
{
result.AppendMessageWithFormat ("No commands found pertaining to '%s'.", search_word);
result.AppendMessage ("Try 'help' to see a complete list of debugger commands.");
result.AppendMessageWithFormat ("No commands found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.", search_word);
}
else
{