mirror of https://github.com/pwndbg/pwndbg
fix typo in dd command
This commit is contained in:
parent
f11afe2c68
commit
b73973392d
|
@ -2,7 +2,7 @@
|
|||
```
|
||||
usage: dd [-h] address [count]
|
||||
```
|
||||
Starting at the specified address, dump N dwrods.
|
||||
Starting at the specified address, dump N dwords.
|
||||
|
||||
| Positional Argument | Info |
|
||||
|---------------------|------|
|
||||
|
|
|
@ -54,7 +54,7 @@ def dw(address, count=32):
|
|||
return dX(2, address, count, repeat=dw.repeat)
|
||||
|
||||
|
||||
parser = argparse.ArgumentParser(description="Starting at the specified address, dump N dwrods.")
|
||||
parser = argparse.ArgumentParser(description="Starting at the specified address, dump N dwords.")
|
||||
parser.add_argument("address", type=int, help="The address to dump from.")
|
||||
parser.add_argument("count", type=int, default=16, nargs="?", help="The number of dwords to dump.")
|
||||
@pwndbg.commands.ArgparsedCommand(parser)
|
||||
|
|
Loading…
Reference in New Issue