From: krakjoe Date: Thu, 14 Nov 2013 21:20:37 +0000 (+0000) Subject: tidy X-Git-Tag: php-5.6.0alpha1~110^2~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=918703ff94fc0a56b863d6322b760ea2b2e1f1fa;p=php tidy --- diff --git a/phpdbg_help.c b/phpdbg_help.c index 97e8738627..6384e6bb0e 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -66,11 +66,11 @@ PHPDBG_HELP(print) /* {{{ */ phpdbg_writeln(EMPTY); phpdbg_writeln("Examples:"); phpdbg_writeln("\t%sprint class \\my\\class", PROMPT); - phpdbg_writeln("Will print information about \\my\\class, including the instructions for every method and their address"); + phpdbg_writeln("Will print the instructions for the methods in \\my\\class"); phpdbg_writeln("\t%sprint method \\my\\class::method", PROMPT); phpdbg_writeln("Will print the instructions for \\my\\class::method"); phpdbg_writeln("\t%sprint func .getSomething", PROMPT); - phpdbg_writeln("Will print the instructions for the method getSomething in the currently active scope"); + phpdbg_writeln("Will print the instructions for ::getSomething in the currently active scope"); phpdbg_writeln("\t%sprint func my_function", PROMPT); phpdbg_writeln("Will print the instructions for the global function my_function"); phpdbg_writeln("\t%sprint opline", PROMPT);