Fixed a missing space when using the "apropos" command and you don't find any matches.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116133 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectApropos.cpp b/source/Commands/CommandObjectApropos.cpp
index 545f58c..a72b0db5 100644
--- a/source/Commands/CommandObjectApropos.cpp
+++ b/source/Commands/CommandObjectApropos.cpp
@@ -73,8 +73,7 @@
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
{