Skip to content

Commit 1504f7d

Browse files
committed
Correct typo in comments: 'initialized'
1 parent 3f42f2f commit 1504f7d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/dom/php_dom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ static HashTable* dom_get_debug_info_helper(zval *object, int *is_temp TSRMLS_DC
518518
value = null_value;
519519
} else if (Z_TYPE_P(value) == IS_OBJECT) {
520520
/* these are zvalues create on demand, with refcount and is_ref
521-
* status left in an uninitalized stated */
521+
* status left in an uninitialized stated */
522522
zval_dtor(value);
523523
efree(value);
524524

ext/mbstring/mb_gpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ const mbfl_encoding *_php_mb_encoding_handler_ex(const php_mb_encoding_handler_i
260260
goto out;
261261
}
262262

263-
num = n; /* make sure to process initilized vars only */
263+
num = n; /* make sure to process initialized vars only */
264264

265265
/* initialize converter */
266266
if (info->num_from_encodings <= 0) {

ext/spl/php_spl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ PHP_FUNCTION(spl_autoload)
326326
RETURN_FALSE;
327327
}
328328

329-
if (file_exts == NULL) { /* autoload_extensions is not initialzed, set to defaults */
329+
if (file_exts == NULL) { /* autoload_extensions is not initialized, set to defaults */
330330
copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1);
331331
} else {
332332
copy = pos1 = estrndup(file_exts, file_exts_len);

0 commit comments

Comments
 (0)