Corrected wording of REPL not available messaging (contained a repeated word and...
authorKate Stone <katherine.stone@apple.com>
Thu, 21 Apr 2016 00:56:08 +0000 (00:56 +0000)
committerKate Stone <katherine.stone@apple.com>
Thu, 21 Apr 2016 00:56:08 +0000 (00:56 +0000)
llvm-svn: 266941

lldb/source/Core/Debugger.cpp
lldb/source/Target/Target.cpp

index 57313a4..d29ae51 100644 (file)
@@ -1812,7 +1812,7 @@ Debugger::RunREPL (LanguageType language, const char *repl_options)
         }
         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
index 8b5a398..6edb145 100644 (file)
@@ -222,7 +222,7 @@ Target::GetREPL (Error &err, lldb::LanguageType language, const char *repl_optio
         }
         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