Skip to content

Commit 99db00b

Browse files
committed
Fix #78880 Another round
1 parent 7426e3b commit 99db00b

25 files changed

+30
-30
lines changed

Zend/zend_inheritance.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ static inheritance_status zend_perform_covariant_type_check(
451451
}
452452
} ZEND_TYPE_LIST_FOREACH_END();
453453

454-
/* All individual checks suceeded, overall success */
454+
/* All individual checks succeeded, overall success */
455455
if (all_success) {
456456
return INHERITANCE_SUCCESS;
457457
}

ext/date/tests/DateTime_extends_basic3.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test DateTime class inheritance : with user space fromat() method
2+
Test DateTime class inheritance : with user space format() method
33
--FILE--
44
<?php
55
//Set the default time zone

ext/date/tests/bug30096.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Bug #30096 (gmmktime does not return the corrent time)
2+
Bug #30096 (gmmktime does not return the correct time)
33
--INI--
44
error_reporting=2047
55
--FILE--

ext/date/tests/bug73858.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var_dump($d->days); // 30 ... and should be 30
4545

4646
/*
4747
[Workaround]
48-
This final test seems to prove that the input string is important and that the "- 1 secord" has a negative knock-on
48+
This final test seems to prove that the input string is important and that the "- 1 second" has a negative knock-on
4949
effect on the results of the diff. By modifying the datetime with ->modify everything works as expected ...
5050
it just means you have to be careful of how we work with DateTimes .
5151
*/

ext/date/tests/timezone_name_from_abbr_basic1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test timezone_name_from_abbr() function : basic functionality
33
--FILE--
44
<?php
55
/* Prototype : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )
6-
* Description: Returns the timezone name from abbrevation
6+
* Description: Returns the timezone name from abbreviation
77
* Source code: ext/date/php_date.c
88
* Alias to functions:
99
*/

ext/dba/dba.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,8 +1003,8 @@ PHP_FUNCTION(dba_fetch)
10031003
skip = 0;
10041004
}
10051005
} else if (!strcmp(info->hnd->name, "inifile")) {
1006-
/* "-1" is compareable to 0 but allows a non restrictive
1007-
* access which is fater. For example 'inifile' uses this
1006+
/* "-1" is comparable to 0 but allows a non restrictive
1007+
* access which is faster. For example 'inifile' uses this
10081008
* to allow faster access when the key was already found
10091009
* using firstkey/nextkey. However explicitly setting the
10101010
* value to 0 ensures the first value.

ext/dom/tests/DOMDocument_createAttribute_error.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
Test DOMDocument::createAttribute() for expected expection thrown when wrong parameter passed
2+
Test DOMDocument::createAttribute() for expected exception thrown when wrong parameter passed
33
--SKIPIF--
44
<?php require_once('skipif.inc'); ?>
55
--FILE--

ext/enchant/enchant.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ PHP_FUNCTION(enchant_broker_init)
312312
/* }}} */
313313

314314
/* {{{ proto bool enchant_broker_free(resource broker)
315-
Destroys the broker object and its dictionnaries */
315+
Destroys the broker object and its dictionaries */
316316
PHP_FUNCTION(enchant_broker_free)
317317
{
318318
zval *broker;

ext/exif/exif.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ static char *exif_get_tagformat(int format)
335335
#define TAG_GPS_AREA_INFORMATION 0x001C
336336
#define TAG_GPS_DATE_STAMP 0x001D
337337
#define TAG_GPS_DIFFERENTIAL 0x001E
338-
#define TAG_TIFF_COMMENT 0x00FE /* SHOUDLNT HAPPEN */
338+
#define TAG_TIFF_COMMENT 0x00FE /* SHOULDN'T HAPPEN */
339339
#define TAG_NEW_SUBFILE 0x00FE /* New version of subfile tag */
340340
#define TAG_SUBFILE_TYPE 0x00FF /* Old version of subfile tag */
341341
#define TAG_IMAGEWIDTH 0x0100
@@ -3002,7 +3002,7 @@ static int exif_process_user_comment(image_info_type *ImageInfo, char **pszInfoP
30023002
szValuePtr = szValuePtr+8;
30033003
ByteCount -= 8;
30043004
} else if (!memcmp(szValuePtr, "JIS\0\0\0\0\0", 8)) {
3005-
/* JIS should be tanslated to MB or we leave it to the user - leave it to the user */
3005+
/* JIS should be translated to MB or we leave it to the user - leave it to the user */
30063006
*pszEncoding = estrdup((const char*)szValuePtr);
30073007
szValuePtr = szValuePtr+8;
30083008
ByteCount -= 8;

ext/gd/tests/imageantialias_error2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (!extension_loaded("gd")) die("skip GD not present");
1111
<?php
1212
/*
1313
14-
It seems the second argument passing is not being correclty checked.
14+
It seems the second argument passing is not being correctly checked.
1515
This test is failing due to this wrogn check
1616
1717
*/

0 commit comments

Comments
 (0)