summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorSammy Kaye Powers <sammyk@sammykmedia.com>2017-09-13 14:11:57 -0500
committerSammy Kaye Powers <sammyk@sammykmedia.com>2017-09-13 14:11:57 -0500
commitc900764e64879afbd2611c6889a2d320cb3001d1 (patch)
treee01d18202834e99731405f6ea74b614be9d3fa19 /ext/reflection/php_reflection.c
parent93af9050719cbdb5a1d1dd30abb92aeb140727fc (diff)
downloadphp-git-c900764e64879afbd2611c6889a2d320cb3001d1.tar.gz
Fix type-o in ext/reflection comment :speech_balloon:
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index a87ecddae4..6c8efe21c2 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -214,7 +214,7 @@ static void _fix_closure_prototype(zend_function *fptr) /* {{{ */
{
/* Actually we are setting proxy function's prototype to null
* as for it, the prototype is an object not a function
- * which could cause serias problems, see #74949 */
+ * which could cause serious problems, see #74949 */
fptr->common.prototype = NULL;
}
/* }}} */