summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2013-11-13 02:22:24 +0000
committerEnrico Granata <egranata@apple.com>2013-11-13 02:22:24 +0000
commit6e49c48f97a608d567f7f867c275053f5459d752 (patch)
treefd3e4cb9bc7c81d99940866024560f35f1c49e40 /lldb/source/Commands/CommandObjectMemory.cpp
parente653f1d12c97d625a807462e89b29b3f426506e6 (diff)
downloadbcm5719-llvm-6e49c48f97a608d567f7f867c275053f5459d752.tar.gz
bcm5719-llvm-6e49c48f97a608d567f7f867c275053f5459d752.zip
Small typos in previous commit
llvm-svn: 194546
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMemory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index 77186a2be2d..5e8db0295f1 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -917,10 +917,10 @@ protected:
OptionDefinition
g_memory_find_option_table[] =
{
- { LLDB_OPT_SET_1, false, "expr", 'e', OptionParser::eRequiredArgument, NULL, 0, eArgTypeExpression, "Evaluate an expression to obtain a byte pattern."},
+ { LLDB_OPT_SET_1, false, "expression", 'e', OptionParser::eRequiredArgument, NULL, 0, eArgTypeExpression, "Evaluate an expression to obtain a byte pattern."},
{ LLDB_OPT_SET_1, false, "string", 's', OptionParser::eRequiredArgument, NULL, 0, eArgTypeName, "Use text to find a byte pattern."},
{ LLDB_OPT_SET_1, false, "count", 'c', OptionParser::eRequiredArgument, NULL, 0, eArgTypeCount, "How many times to perform the search."},
- { LLDB_OPT_SET_1, false, "do-read", 'r', OptionParser::eNoArgument, NULL, 0, eArgTypeNone, "Should we do a memory read at each match."},
+ { LLDB_OPT_SET_1, false, "do-read-on-match", 'r', OptionParser::eNoArgument, NULL, 0, eArgTypeNone, "Should we do a memory read at each match."},
};
@@ -1066,7 +1066,7 @@ protected:
if (argc != 2)
{
- result.AppendError("Two addressed needed for memory find");
+ result.AppendError("two addresses needed for memory find");
return false;
}
OpenPOWER on IntegriCloud