Reapply typo fix.
authorBruce Mitchener <bruce.mitchener@gmail.com>
Thu, 10 Jul 2014 14:45:57 +0000 (14:45 +0000)
committerBruce Mitchener <bruce.mitchener@gmail.com>
Thu, 10 Jul 2014 14:45:57 +0000 (14:45 +0000)
This was lost in the re-merging of command validation changes.

llvm-svn: 212721

lldb/source/Commands/CommandObjectMemory.cpp

index 63ee14f..bfbb296 100644 (file)
@@ -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."},
 };
 
 //----------------------------------------------------------------------