Skip to content

Commit d0ffb9b

Browse files
authored
fix simple typos
1 parent f6efd12 commit d0ffb9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/lang/foreachLoopObjects.003.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ foreach ($obj as $k=>&$v) {
3535
}
3636
var_dump($obj);
3737

38-
echo "\nAdding properties to an an object.\n";
38+
echo "\nAdding properties to an object.\n";
3939
$obj = new C;
4040
$counter=0;
4141
foreach ($obj as $v) {
@@ -49,7 +49,7 @@ foreach ($obj as $v) {
4949
}
5050
var_dump($obj);
5151

52-
echo "\nAdding properties to an an object, using &\$value.\n";
52+
echo "\nAdding properties to an object, using &\$value.\n";
5353
$obj = new C;
5454
$counter=0;
5555
foreach ($obj as &$v) {
@@ -130,7 +130,7 @@ object(C)#%d (5) {
130130
string(10) "Original e"
131131
}
132132

133-
Adding properties to an an object.
133+
Adding properties to an object.
134134
string(10) "Original a"
135135
string(10) "Original b"
136136
string(10) "Original c"

0 commit comments

Comments
 (0)