From 640bf973ce755e8d97abb15f2e46e6118549b09e Mon Sep 17 00:00:00 2001 From: krakjoe Date: Wed, 20 Nov 2013 14:30:56 +0000 Subject: [PATCH] correct help for register command --- phpdbg_help.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpdbg_help.c b/phpdbg_help.c index 9aa37310e9..9ee044182e 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -412,14 +412,14 @@ PHPDBG_HELP(oplog) /* {{{ */ PHPDBG_HELP(register) /* {{{ */ { phpdbg_help_header(); - phpdbg_writeln("Register any global function that accepts 0 or 1 arguments for use as a command in phpdbg console"); + phpdbg_writeln("Register any global function for use as a command in phpdbg console"); phpdbg_writeln(EMPTY); phpdbg_notice("Examples"); phpdbg_writeln("\t%sregister scandir", PROMPT); phpdbg_writeln("\t%sR scandir", PROMPT); phpdbg_writeln("\tWill register the scandir function for use in phpdbg"); phpdbg_writeln(EMPTY); - phpdbg_writeln("Note: argument will be passed as a string to the function and the return printed to the console"); + phpdbg_writeln("Note: arguments passed as strings, return (if present) print_r'd on console"); if (zend_hash_num_elements(&PHPDBG_G(registered))) { HashPosition position; char *name = NULL; -- 2.40.0