aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2014-07-08 18:05:41 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-07-08 18:05:41 +0000
commitaaa0ba31a996b189b8985e5d05559c254c05d3f8 (patch)
tree6ea608bed1677877a10c908ff1806db2b3d5fc5f /lldb/source/Commands/CommandObjectMemory.cpp
parentc3aba6aafa2c85ef01001fc223b2f988d5e76bfe (diff)
downloadllvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.zip
llvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.tar.gz
llvm-aaa0ba31a996b189b8985e5d05559c254c05d3f8.tar.bz2
Fix typos.
llvm-svn: 212553
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 7b4b8db..0d3bb4f 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, 0, eArgTypeFilename, "Write memory using the contents of a file."},
-{ LLDB_OPT_SET_1, false, "offset", 'o', OptionParser::eRequiredArgument, NULL, 0, eArgTypeOffset, "Start writng bytes from an offset within the input file."},
+{ LLDB_OPT_SET_1, false, "offset", 'o', OptionParser::eRequiredArgument, NULL, 0, eArgTypeOffset, "Start writing bytes from an offset within the input file."},
};
//----------------------------------------------------------------------