Skip to content

Commit 03b43e3

Browse files
committed
consistency
1 parent 4def1ab commit 03b43e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Breaking Execution
1818

1919
In order to debug your code, execution must be interrupted at a very specific points during execution, and allow access to, and inspection of, the execution environment. For extreme circumstances, and geeks (me included), phpdbg can step through the execution of your script, showing you information about every opcode the vm executes, including the address (in case you need to break at that specific point on the next execution).
2020

21-
phpdbg provides many options for specifying break points, as illustrated by a screenshot of the help menu for the break command:
21+
phpdbg provides many options for specifying breakpoints, as illustrated by a screenshot of the help menu for the break command:
2222

2323
![phpdbg help menu](https://raw.github.com/krakjoe/phpdbg/master/tutorials/help-break.png)
2424

25-
In those case where you wish to program your break points in userland, phpdbg includes a userland API, in the shape of two simple functions:
25+
In those cases where you wish to program your breakpoints in userland, phpdbg includes a userland API, in the shape of two simple functions:
2626

2727
```php
2828
/**

0 commit comments

Comments
 (0)