Skip to content

Commit 6932eb7

Browse files
committed
correction in help
1 parent 754fe82 commit 6932eb7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

phpdbg_bp.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ PHPDBG_API void phpdbg_export_breakpoints(FILE *handle TSRMLS_DC) /* {{{ */
6666
phpdbg_notice(
6767
"Exporting file breakpoints in %s (%d)", brake->filename, count);
6868

69-
fprintf(handle, "# Breakpoints in %s (%d)\n", brake->filename, count);
7069
do {
7170
fprintf(handle, "break file %s:%lu\n", brake->filename, brake->line);
7271
} while ((brake = zend_llist_get_next_ex(brakes, &lposition)));

phpdbg_help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ PHPDBG_HELP(break) /* {{{ */
221221
phpdbg_writeln(EMPTY);
222222
phpdbg_notice("Examples");
223223
phpdbg_writeln("\t%sbreak [file] test.php:1", phpdbg_get_prompt(TSRMLS_C));
224-
phpdbg_writeln("\t%sb [f] test.php:1", phpdbg_get_prompt(TSRMLS_C));
224+
phpdbg_writeln("\t%sb [F] test.php:1", phpdbg_get_prompt(TSRMLS_C));
225225
phpdbg_writeln("\tWill break execution on line 1 of test.php");
226226
phpdbg_writeln(EMPTY);
227227
phpdbg_writeln("\t%sbreak [func] my_function", phpdbg_get_prompt(TSRMLS_C));

0 commit comments

Comments
 (0)