summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Zend/zend_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index dd5cd3888d..192c4709a1 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -1859,7 +1859,7 @@ ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_functio
if (!(scope->ce_flags & ZEND_ACC_INTERFACE)) {
/* Since the class is not an interface it needs to be declared as a abstract class. */
/* Since here we are handling internal functions only we can add the keyword flag. */
- /* This time we set the flag for the keyword 'abstratc'. */
+ /* This time we set the flag for the keyword 'abstract'. */
scope->ce_flags |= ZEND_ACC_EXPLICIT_ABSTRACT_CLASS;
}
}