summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/usort_error2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/usort_error2.phpt')
-rw-r--r--ext/standard/tests/array/usort_error2.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/array/usort_error2.phpt b/ext/standard/tests/array/usort_error2.phpt
index 7bf0f659e0..d0ccd36221 100644
--- a/ext/standard/tests/array/usort_error2.phpt
+++ b/ext/standard/tests/array/usort_error2.phpt
@@ -3,7 +3,7 @@ Test usort() function : error conditions - Pass unknown 'cmp_function'
--FILE--
<?php
/* Prototype : bool usort(array $array_arg, string $cmp_function)
- * Description: Sort an array by values using a user-defined comparison function
+ * Description: Sort an array by values using a user-defined comparison function
* Source code: ext/standard/array.c
*/
@@ -28,7 +28,7 @@ function cmp($value1, $value2)
}
}
-// Initialize 'array_arg'
+// Initialize 'array_arg'
$array_arg = array(0 => 1, 1 => 10, 2 => 'string', 3 => 3, 4 => 2, 5 => 100, 6 => 25);
$extra_arg = 10;