diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-19 08:50:48 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-19 18:28:43 +0100 |
commit | 99db00b1f2c6338041bbe3db8b6d0eaee5cd8c94 (patch) | |
tree | ade7b04cac0600cb793393ce084ce34c11a2bb04 /Zend/zend_inheritance.c | |
parent | 7426e3b6a1a5a6e2890415cc1b64e8d74a6927a3 (diff) | |
download | php-git-99db00b1f2c6338041bbe3db8b6d0eaee5cd8c94.tar.gz |
Fix #78880 Another round
Diffstat (limited to 'Zend/zend_inheritance.c')
-rw-r--r-- | Zend/zend_inheritance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_inheritance.c b/Zend/zend_inheritance.c index 9a9199a198..ce55704ef7 100644 --- a/Zend/zend_inheritance.c +++ b/Zend/zend_inheritance.c @@ -451,7 +451,7 @@ static inheritance_status zend_perform_covariant_type_check( } } ZEND_TYPE_LIST_FOREACH_END(); - /* All individual checks suceeded, overall success */ + /* All individual checks succeeded, overall success */ if (all_success) { return INHERITANCE_SUCCESS; } |