summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_intersect_assoc_variation3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/array_intersect_assoc_variation3.phpt')
-rw-r--r--ext/standard/tests/array/array_intersect_assoc_variation3.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/array/array_intersect_assoc_variation3.phpt b/ext/standard/tests/array/array_intersect_assoc_variation3.phpt
index 44eaf4d410..5b3578430d 100644
--- a/ext/standard/tests/array/array_intersect_assoc_variation3.phpt
+++ b/ext/standard/tests/array/array_intersect_assoc_variation3.phpt
@@ -71,7 +71,7 @@ $arrays = array (
array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
- // array with repetative keys
+ // array with repetitive keys
/*19*/ array("One" => 1, "two" => 2, "One" => 10, "two" => 20, "three" => 3)
);
@@ -85,7 +85,7 @@ $arr2 = array (
'', null => "null", '' => 'emptys', "emptyd" => "",
);
-// loop through each sub-array within $arrrays to check the behavior of array_intersect_assoc()
+// loop through each sub-array within $arrays to check the behavior of array_intersect_assoc()
$iterator = 1;
foreach($arrays as $arr1) {
echo "-- Iteration $iterator --\n";