diff options
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/main.c b/main/main.c index 18d0b43d36..48e0e1a7f7 100644 --- a/main/main.c +++ b/main/main.c @@ -1163,9 +1163,9 @@ PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int typ } /* }}} */ -/* {{{ php_error_docref0 */ -/* See: CODING_STANDARDS.md for details. */ -PHPAPI ZEND_COLD void php_error_docref0(const char *docref, int type, const char *format, ...) +/* {{{ php_error_docref */ +/* Generate an error which links to docref or the php.net documentation if docref is NULL */ +PHPAPI ZEND_COLD void php_error_docref(const char *docref, int type, const char *format, ...) { va_list args; |