1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 15:12:39 +02:00

Minor Typo in Comment

This commit is contained in:
hakre
2015-04-27 19:09:34 +02:00
committed by Nikita Popov
parent fc264da0e5
commit 6551f996b9

View File

@@ -753,7 +753,7 @@ void zend_register_default_exception(void) /* {{{ */
default_exception_ce = zend_register_internal_class_ex(&ce, base_exception_ce);
default_exception_ce->create_object = zend_default_exception_new;
/* A trick, to make visible prvate properties of BaseException */
/* A trick, to make visible private properties of BaseException */
ZEND_HASH_FOREACH_PTR(&default_exception_ce->properties_info, prop) {
if (prop->flags & ZEND_ACC_SHADOW) {
if (prop->name->len == sizeof("\0BaseException\0string")-1) {