[Lldb-commits] [lldb] r266941 - Corrected wording of REPL not available messaging (contained a repeated word and lacked clarity.)
Kate Stone via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 20 17:56:08 PDT 2016
Author: kate
Date: Wed Apr 20 19:56:08 2016
New Revision: 266941
URL: http://llvm.org/viewvc/llvm-project?rev=266941&view=rev
Log:
Corrected wording of REPL not available messaging (contained a repeated word and lacked clarity.)
Modified:
lldb/trunk/source/Core/Debugger.cpp
lldb/trunk/source/Target/Target.cpp
Modified: lldb/trunk/source/Core/Debugger.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Debugger.cpp?rev=266941&r1=266940&r2=266941&view=diff
==============================================================================
--- lldb/trunk/source/Core/Debugger.cpp (original)
+++ lldb/trunk/source/Core/Debugger.cpp Wed Apr 20 19:56:08 2016
@@ -1812,7 +1812,7 @@ Debugger::RunREPL (LanguageType language
}
else if (repl_languages.empty())
{
- err.SetErrorStringWithFormat("LLDB isn't configured with support support for any REPLs.");
+ err.SetErrorStringWithFormat("LLDB isn't configured with REPL support for any languages.");
return err;
}
else
Modified: lldb/trunk/source/Target/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Target.cpp?rev=266941&r1=266940&r2=266941&view=diff
==============================================================================
--- lldb/trunk/source/Target/Target.cpp (original)
+++ lldb/trunk/source/Target/Target.cpp Wed Apr 20 19:56:08 2016
@@ -222,7 +222,7 @@ Target::GetREPL (Error &err, lldb::Langu
}
else if (repl_languages.size() == 0)
{
- err.SetErrorStringWithFormat("LLDB isn't configured with support support for any REPLs.");
+ err.SetErrorStringWithFormat("LLDB isn't configured with REPL support for any languages.");
return REPLSP();
}
else
More information about the lldb-commits
mailing list