summaryrefslogtreecommitdiff
path: root/ext/spl
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl')
-rw-r--r--ext/spl/tests/array_024.phpt2
-rw-r--r--ext/spl/tests/dllist_008.phpt2
-rw-r--r--ext/spl/tests/fixedarray_018.phpt2
-rw-r--r--ext/spl/tests/fixedarray_019.phpt2
-rw-r--r--ext/spl/tests/heap_010.phpt2
-rw-r--r--ext/spl/tests/heap_011.phpt2
-rw-r--r--ext/spl/tests/iterator_070.phpt2
7 files changed, 7 insertions, 7 deletions
diff --git a/ext/spl/tests/array_024.phpt b/ext/spl/tests/array_024.phpt
index 0c073bfe78..6223b8072e 100644
--- a/ext/spl/tests/array_024.phpt
+++ b/ext/spl/tests/array_024.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: ArrayObject with overriden count()
+SPL: ArrayObject with overridden count()
--FILE--
<?php
$obj = new ArrayObject(array(1,2));
diff --git a/ext/spl/tests/dllist_008.phpt b/ext/spl/tests/dllist_008.phpt
index ab37d83afa..114b50c4f5 100644
--- a/ext/spl/tests/dllist_008.phpt
+++ b/ext/spl/tests/dllist_008.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: SplDoublyLinkedList with overriden count()
+SPL: SplDoublyLinkedList with overridden count()
--FILE--
<?php
$obj = new SplDoublyLinkedList();
diff --git a/ext/spl/tests/fixedarray_018.phpt b/ext/spl/tests/fixedarray_018.phpt
index 84ab109195..aa02fb5de1 100644
--- a/ext/spl/tests/fixedarray_018.phpt
+++ b/ext/spl/tests/fixedarray_018.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: FixedArray: overriden count()
+SPL: FixedArray: overridden count()
--FILE--
<?php
$obj = new SplFixedArray(2);
diff --git a/ext/spl/tests/fixedarray_019.phpt b/ext/spl/tests/fixedarray_019.phpt
index f28edfda41..9414e97304 100644
--- a/ext/spl/tests/fixedarray_019.phpt
+++ b/ext/spl/tests/fixedarray_019.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: FixedArray: overriden iterator methods
+SPL: FixedArray: overridden iterator methods
--FILE--
<?php
class SplFixedArray2 extends SplFixedArray {
diff --git a/ext/spl/tests/heap_010.phpt b/ext/spl/tests/heap_010.phpt
index 8c7d8d5c96..81e71c2398 100644
--- a/ext/spl/tests/heap_010.phpt
+++ b/ext/spl/tests/heap_010.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: SplHeap with overriden count()
+SPL: SplHeap with overridden count()
--FILE--
<?php
$obj = new SplMaxHeap();
diff --git a/ext/spl/tests/heap_011.phpt b/ext/spl/tests/heap_011.phpt
index 1689abfae1..fae62585b0 100644
--- a/ext/spl/tests/heap_011.phpt
+++ b/ext/spl/tests/heap_011.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: SplHeap with overriden compare()
+SPL: SplHeap with overridden compare()
--FILE--
<?php
class SplMinHeap2 extends SplMinHeap {
diff --git a/ext/spl/tests/iterator_070.phpt b/ext/spl/tests/iterator_070.phpt
index 681e327523..94dea30db5 100644
--- a/ext/spl/tests/iterator_070.phpt
+++ b/ext/spl/tests/iterator_070.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: RecursiveIteratorIterator - Ensure that non-overriden methods execute problem free.
+SPL: RecursiveIteratorIterator - Ensure that non-overridden methods execute problem free.
--FILE--
<?php