summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorKate Stone <katherine.stone@apple.com>2016-04-21 00:56:08 +0000
committerKate Stone <katherine.stone@apple.com>2016-04-21 00:56:08 +0000
commit0761202612c2f12d344a95f8a87702a05f05e560 (patch)
tree56ae584b3b028306348f9bf84d8f2c8ce4256a80 /lldb/source
parent25d6072adcdb092ef28e3cab2d2419cf2859329f (diff)
downloadbcm5719-llvm-0761202612c2f12d344a95f8a87702a05f05e560.tar.gz
bcm5719-llvm-0761202612c2f12d344a95f8a87702a05f05e560.zip
Corrected wording of REPL not available messaging (contained a repeated word and lacked clarity.)
llvm-svn: 266941
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Core/Debugger.cpp2
-rw-r--r--lldb/source/Target/Target.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp
index 57313a45d37..d29ae514533 100644
--- a/lldb/source/Core/Debugger.cpp
+++ b/lldb/source/Core/Debugger.cpp
@@ -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
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp
index 8b5a398f8f4..6edb1450872 100644
--- a/lldb/source/Target/Target.cpp
+++ b/lldb/source/Target/Target.cpp
@@ -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
OpenPOWER on IntegriCloud