summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/log1p_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/log1p_basic.phpt')
-rw-r--r--ext/standard/tests/math/log1p_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/math/log1p_basic.phpt b/ext/standard/tests/math/log1p_basic.phpt
index b28941860f..76d51b0d9b 100644
--- a/ext/standard/tests/math/log1p_basic.phpt
+++ b/ext/standard/tests/math/log1p_basic.phpt
@@ -5,7 +5,7 @@ precision=14
--FILE--
<?php
/* Prototype : float log1p ( float $arg )
- * Description: Returns log(1 + number), computed in a way that is accurate even
+ * Description: Returns log(1 + number), computed in a way that is accurate even
* when the value of number is close to zero
* Source code: ext/standard/math.c
*/
@@ -20,17 +20,17 @@ $values = array(23,
027,
"23",
"23.45",
- "2.345e1",
+ "2.345e1",
null,
true,
- false);
+ false);
echo "\n LOG1p tests\n";
foreach($values as $value) {
echo "\n-- log1p $value --\n";
var_dump(log1p($value));
-};
+};
?>