fix typo in dd command

This commit is contained in:
Nicky Lim 2021-09-19 12:06:37 +08:00 committed by Disconnect3d
parent f11afe2c68
commit b73973392d
2 changed files with 2 additions and 2 deletions

View File

@ -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 |
|---------------------|------|

View File

@ -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)