diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-10-07 10:11:10 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-10-07 10:11:10 +0000 |
commit | 4d31a482bb90969a9f8ef12f3a7b00dd5b4f64ac (patch) | |
tree | 2ca296efacda1504424593384ff26c930f24c164 /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | dadb58b466123aef94cf58a534cbc82affebea04 (diff) | |
download | bcm5719-llvm-4d31a482bb90969a9f8ef12f3a7b00dd5b4f64ac.tar.gz bcm5719-llvm-4d31a482bb90969a9f8ef12f3a7b00dd5b4f64ac.zip |
Fix minor typos in comments.
llvm-svn: 249533
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 758e60a9044..fd7fb871bd2 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -401,7 +401,7 @@ protected: if (process_sp) { - // Seems wierd that we Launch a core file, but that is + // Seems weird that we Launch a core file, but that is // what we do! error = process_sp->LoadCore(); @@ -1290,7 +1290,7 @@ protected: if (target) { size_t argc = command.GetArgumentCount(); - // check for at least 3 arguments and an odd nubmer of parameters + // check for at least 3 arguments and an odd number of parameters if (argc >= 3 && argc & 1) { bool success = false; |