aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectDisassemble.cpp
diff options
context:
space:
mode:
authorBen Langmuir <ben.langmuir@intel.com>2013-09-26 19:53:03 +0000
committerBen Langmuir <ben.langmuir@intel.com>2013-09-26 19:53:03 +0000
commitbcf81ea4bf0bc295fb84fba2701f5c93da2256f7 (patch)
tree9043c7c0093982ae1379675c99da7e1e8a3a2428 /lldb/source/Commands/CommandObjectDisassemble.cpp
parentbdd8561deadb2182269f873f80dfce31a7196973 (diff)
downloadllvm-bcf81ea4bf0bc295fb84fba2701f5c93da2256f7.zip
llvm-bcf81ea4bf0bc295fb84fba2701f5c93da2256f7.tar.gz
llvm-bcf81ea4bf0bc295fb84fba2701f5c93da2256f7.tar.bz2
Fix a couple of typos in the help text for disassemble
llvm-svn: 191452
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectDisassemble.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp
index 95c6f37..fc148b1 100644
--- a/lldb/source/Commands/CommandObjectDisassemble.cpp
+++ b/lldb/source/Commands/CommandObjectDisassemble.cpp
@@ -251,7 +251,7 @@ CommandObjectDisassemble::CommandOptions::g_option_table[] =
"Disassemble entire contents of the given function name."},
{ LLDB_OPT_SET_4 , false, "frame" , 'f', OptionParser::eNoArgument , NULL, 0, eArgTypeNone, "Disassemble from the start of the current frame's function."},
{ LLDB_OPT_SET_5 , false, "pc" , 'p', OptionParser::eNoArgument , NULL, 0, eArgTypeNone, "Disassemble around the current pc."},
-{ LLDB_OPT_SET_6 , false, "line" , 'l', OptionParser::eNoArgument , NULL, 0, eArgTypeNone, "Disassemble the current frame's current source line instructions if there debug line table information, else disasemble around the pc."},
+{ LLDB_OPT_SET_6 , false, "line" , 'l', OptionParser::eNoArgument , NULL, 0, eArgTypeNone, "Disassemble the current frame's current source line instructions if there is debug line table information, else disassemble around the pc."},
{ LLDB_OPT_SET_7 , false, "address" , 'a', OptionParser::eRequiredArgument , NULL, 0, eArgTypeAddressOrExpression, "Disassemble function containing this address."},
{ 0 , false, NULL , 0, 0 , NULL, 0, eArgTypeNone, NULL }
};