Skip to content

Commit ffc8717

Browse files
Fix some typos (#7320)
1 parent d6368f7 commit ffc8717

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Zend/tests/array_unpack/undef_var.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
array unpacking with undefinded variable
2+
array unpacking with undefined variable
33
--FILE--
44
<?php
55

Zend/tests/generators/unused_return_value.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
There shouldn't be any leaks when the genertor's return value isn't used
2+
There shouldn't be any leaks when the generator's return value isn't used
33
--FILE--
44
<?php
55

Zend/tests/traits/property007.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ trait THello1 {
1212
}
1313

1414
// Protected and public are handle more strict with a warning then what is
15-
// expected from normal inheritance since they can have easier coliding semantics
15+
// expected from normal inheritance since they can have easier colliding semantics
1616
echo "PRE-CLASS-GUARD\n";
1717
class SameNameInSubClassProducesNotice extends Base {
1818
use THello1;

Zend/tests/traits/trait_constant_001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
__TRAIT__: Basics, a constant denoiting the trait of definition.
2+
__TRAIT__: Basics, a constant denoting the trait of definition.
33
--FILE--
44
<?php
55

Zend/tests/unset_cv11.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
unset() CV 11 (unset() of copy destoies original value)
2+
unset() CV 11 (unset() of copy destroys original value)
33
--FILE--
44
<?php
55
$x = array("default"=>"ok");

Zend/zend_gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* ------------------------------------------
3434
*
3535
* GREEN - Acyclic
36-
* RED - Candidate cycle underogin
36+
* RED - Candidate cycle undergoing
3737
* ORANGE - Candidate cycle awaiting epoch boundary.
3838
*
3939
*

0 commit comments

Comments
 (0)