summaryrefslogtreecommitdiff
path: root/ext/spl/php_spl.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-17 21:40:39 +0200
committerAnatol Belski <ab@php.net>2014-08-17 21:40:39 +0200
commit77eb6e727819214e003bb0832a52e530627d2316 (patch)
tree498f3cd472f4ca918ef019f40edb96e0759f3344 /ext/spl/php_spl.c
parentf2182ab845236a112ff63bcb8752b07943c999f1 (diff)
parent741605da73d424a3cb2fe29d2d5a610b010d0aff (diff)
downloadphp-git-77eb6e727819214e003bb0832a52e530627d2316.tar.gz
Merge branch 'master' of git.php.net:php-src
# By Veres Lajos (2) and Lior Kaplan (1) # Via Lior Kaplan * 'master' of git.php.net:php-src: Correct typo in comments: 'initialized' typofixes typofixes
Diffstat (limited to 'ext/spl/php_spl.c')
-rw-r--r--ext/spl/php_spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c
index 530a0c80ee..a938ac05c0 100644
--- a/ext/spl/php_spl.c
+++ b/ext/spl/php_spl.c
@@ -315,7 +315,7 @@ PHP_FUNCTION(spl_autoload)
RETURN_FALSE;
}
- if (file_exts == NULL) { /* autoload_extensions is not intialzed, set to defaults */
+ if (file_exts == NULL) { /* autoload_extensions is not initialized, set to defaults */
pos = SPL_DEFAULT_FILE_EXTENSIONS;
pos_len = sizeof(SPL_DEFAULT_FILE_EXTENSIONS) - 1;
} else {