Skip to content

Commit

Permalink
Fix some typos in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
plan-do-break-fix authored Apr 28, 2021
1 parent 0ad5f99 commit 5ff0bdc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/commands/name-break.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The command `name-break` (alias `nb`) can be used to set a breakpoint on
a location with a name assigned to it.

Everytime this breakpoint is hit, the specified name will also be shown
Every time this breakpoint is hit, the specified name will also be shown
in the `extra` section to make it easier to keep an overview when using
multiple breakpoints in a stripped binary.

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/pcustom.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

`gef` provides a way to create and apply to the currently debugged environment, any new structure (in the C-struct way). On top of simply displaying known and user-defined structures, it also allows to apply those structures to the current context. It intends to mimic the very useful [WinDBG `dt`](https://msdn.microsoft.com/en-us/library/windows/hardware/ff542772(v=vs.85).aspx) command.

This is achieved via the command `pcustom` (for `print custom`), or you can use its alias, `dt` (in reference to the WinDBG command) as provided by the [`WinDbg compatiblity extension`](https://github.com/hugsy/gef-extras/blob/master/scripts/windbg.py)
This is achieved via the command `pcustom` (for `print custom`), or you can use its alias, `dt` (in reference to the WinDBG command) as provided by the [`WinDbg compatibility extension`](https://github.com/hugsy/gef-extras/blob/master/scripts/windbg.py)


### Configuration
Expand Down
4 changes: 2 additions & 2 deletions docs/commands/print-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ specified. Currently, the output language supported are
```
gef➤ print-format -h
[+] print-format [-f FORMAT] [-b BITSIZE] [-l LENGTH] [-c] [-h] LOCATION
-f FORMAT specifies the output format for programming language, avaliable value is py, c, js, asm (default py).
-b BITSIZE sepecifies size of bit, avaliable values is 8, 16, 32, 64 (default is 8).
-f FORMAT specifies the output format for programming language, available value is py, c, js, asm (default py).
-b BITSIZE sepecifies size of bit, available values is 8, 16, 32, 64 (default is 8).
-l LENGTH specifies length of array (default is 256).
-c The result of data will copied to clipboard (requires xclip)
LOCATION specifies where the address of bytes is stored.
Expand Down
2 changes: 1 addition & 1 deletion docs/commands/search-pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gef➤ search-pattern MyPattern

![grep](https://i.imgur.com/YNzsFvk.png)

It will provide an easily understandable to spot occurences of the specified
It will provide an easily understandable to spot occurrences of the specified
pattern, including the section it/they was/were found, and the permission
associated to that section.

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/syscall-args.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Command syscall-args ##

Often it is troublesome to have to refer to syscall tables everytime we encounter a system call instruction.
Often it is troublesome to have to refer to syscall tables every time we encounter a system call instruction.
`gef` can be used to determine the system call being invoked and the arguments being passed to it. Requires [gef-extras](http://github.com/hugsy/gef-extras).

To use it, simply run
Expand Down

0 comments on commit 5ff0bdc

Please sign in to comment.