summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2015-06-18 05:27:05 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2015-06-18 05:27:05 +0000
commit58ef391f3ef80cc4e4e375b7e2f1f397afd47b90 (patch)
tree5745c92f275d16ef1c8c47b79e523929b3169a36 /lldb/source/Interpreter/CommandInterpreter.cpp
parent8b2492f2a0e0b143c4c4f17765901e568af92e68 (diff)
downloadbcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.tar.gz
bcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.zip
Fix a variety of typos.
No functional change. llvm-svn: 239995
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 2470809367b..481d69eb08a 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -1293,7 +1293,7 @@ CommandInterpreter::GetCommandObjectForCommand (std::string &command_string)
CommandObject *sub_cmd_obj = cmd_obj->GetSubcommandObject (cmd_word.c_str());
if (sub_cmd_obj)
cmd_obj = sub_cmd_obj;
- else // cmd_word was not a valid sub-command word, so we are donee
+ else // cmd_word was not a valid sub-command word, so we are done
done = true;
}
else
@@ -1518,7 +1518,7 @@ CommandInterpreter::PreprocessCommand (std::string &command)
{
if (start_backtick > 0 && command[start_backtick-1] == '\\')
{
- // The backtick was preceeded by a '\' character, remove the slash
+ // The backtick was preceded by a '\' character, remove the slash
// and don't treat the backtick as the start of an expression
command.erase(start_backtick-1, 1);
// No need to add one to start_backtick since we just deleted a char
@@ -3214,7 +3214,7 @@ CommandInterpreter::RunCommandInterpreter(bool auto_handle_events,
bool spawn_thread,
CommandInterpreterRunOptions &options)
{
- // Always re-create the command intepreter when we run it in case
+ // Always re-create the command interpreter when we run it in case
// any file handles have changed.
bool force_create = true;
m_debugger.PushIOHandler(GetIOHandler(force_create, &options));
OpenPOWER on IntegriCloud