From ae1c05944c5ee449053d9c4b59223030aeaee19c Mon Sep 17 00:00:00 2001 From: krakjoe Date: Wed, 13 Nov 2013 10:17:53 +0000 Subject: [PATCH] ... --- tutorials/intro.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/intro.md b/tutorials/intro.md index fa1c99ebec..0c7f574913 100644 --- a/tutorials/intro.md +++ b/tutorials/intro.md @@ -24,7 +24,7 @@ phpdbg provides many options for specifying break points, as illustrated by a sc 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: -``` +```php /** * Sets a breakpoint at the next opcode address * @return void @@ -33,7 +33,7 @@ proto void phpdbg_break(void); ``` -``` +```php /** * Clear breakpoints before continuing execution * @return void @@ -55,7 +55,7 @@ Direct access to eval allows you to change _anything_ at _any_ time during execu Library code for this section: -``` +```php