summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2008-02-19 06:52:58 +0000
committerSebastian Bergmann <sebastian@php.net>2008-02-19 06:52:58 +0000
commit87784c32b36f0ee7cdbab6b21767391e527f7aac (patch)
treea2c3dacb01faa7b75f7f43ffe96d143e882bb6c6 /Zend
parent8187dbfa4d925c37c84101e1235aab51c3efdbf9 (diff)
downloadphp-git-87784c32b36f0ee7cdbab6b21767391e527f7aac.tar.gz
MFH: Fugbix typo.
Diffstat (limited to 'Zend')
-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 43c75b3564..5a4697175c 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -1700,7 +1700,7 @@ ZEND_API int zend_register_functions(zend_class_entry *scope, zend_function_entr
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;
}
}