aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2014-07-10 14:45:57 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-07-10 14:45:57 +0000
commit350b78e5ea707ab8c4aaf430d70df1a495c2d1de (patch)
treec6833f5a4b631fe03cc1a38e3d5477f7a328346d /lldb/source/Commands/CommandObjectMemory.cpp
parenta995f926278ab380e300bce12dc0fa237fe699c6 (diff)
downloadllvm-350b78e5ea707ab8c4aaf430d70df1a495c2d1de.zip
llvm-350b78e5ea707ab8c4aaf430d70df1a495c2d1de.tar.gz
llvm-350b78e5ea707ab8c4aaf430d70df1a495c2d1de.tar.bz2
Reapply typo fix.
This was lost in the re-merging of command validation changes. llvm-svn: 212721
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMemory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index 63ee14f..bfbb296 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -1224,7 +1224,7 @@ OptionDefinition
g_memory_write_option_table[] =
{
{ LLDB_OPT_SET_1, true, "infile", 'i', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeFilename, "Write memory using the contents of a file."},
-{ LLDB_OPT_SET_1, false, "offset", 'o', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeOffset, "Start writng bytes from an offset within the input file."},
+{ LLDB_OPT_SET_1, false, "offset", 'o', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeOffset, "Start writing bytes from an offset within the input file."},
};
//----------------------------------------------------------------------