From: krakjoe Date: Fri, 15 Nov 2013 16:09:40 +0000 (+0000) Subject: ... X-Git-Tag: php-5.6.0alpha1~110^2~302 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae5f0d0f27162116b630aaf22e665402857eb534;p=php ... --- diff --git a/tutorials/intro.md b/tutorials/intro.md index fcc3501646..473f3d6bdd 100644 --- a/tutorials/intro.md +++ b/tutorials/intro.md @@ -26,10 +26,12 @@ phpdbg also includes a userland API to enable working with breakpoints from with ```php /** -* Sets a breakpoint at the next opcode address +* If no parameters are recieved sets a breakpoint at the next opcode address +* @param type a constant PHPDBG_ type +* @param expression the expression for the break command * @return void */ -proto void phpdbg_break(void); +proto void phpdbg_break([integer type, string expression]); ```