summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/wordwrap_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/wordwrap_error.phpt')
-rw-r--r--ext/standard/tests/strings/wordwrap_error.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/strings/wordwrap_error.phpt b/ext/standard/tests/strings/wordwrap_error.phpt
index 98f199abc6..41c5cbdb69 100644
--- a/ext/standard/tests/strings/wordwrap_error.phpt
+++ b/ext/standard/tests/strings/wordwrap_error.phpt
@@ -1,5 +1,5 @@
--TEST--
-Test wordwrap() function : error conditions
+Test wordwrap() function : error conditions
--FILE--
<?php
/* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
@@ -32,7 +32,7 @@ $cut = false;
var_dump( wordwrap($str, $width, $break, $cut) );
echo "-- width = 0 & cut = true --\n";
-// width as zero and cut as true
+// width as zero and cut as true
$width = 0;
$cut = true;
var_dump( wordwrap($str, $width, $break, $cut) );
@@ -44,7 +44,7 @@ $cut = false;
var_dump( wordwrap($str, $width, $break, $cut) );
echo "-- width = -10 & cut = true --\n";
-// width as -ne and cut as true
+// width as -ne and cut as true
$width = -10;
$cut = true;
var_dump( wordwrap($str, $width, $break, $cut) );