summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/expm1_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/expm1_basic.phpt')
-rw-r--r--ext/standard/tests/math/expm1_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/math/expm1_basic.phpt b/ext/standard/tests/math/expm1_basic.phpt
index 320b01a27d..00f8762ad5 100644
--- a/ext/standard/tests/math/expm1_basic.phpt
+++ b/ext/standard/tests/math/expm1_basic.phpt
@@ -5,7 +5,7 @@ precision=14
--FILE--
<?php
/* Prototype : float expm1 ( float $arg )
- * Description: Returns exp(number) - 1, computed in a way that is accurate even
+ * Description: Returns exp(number) - 1, computed in a way that is accurate even
* when the value of number is close to zero.
* Source code: ext/standard/math.c
*/
@@ -15,15 +15,15 @@ $values = array(10,
10.3,
3.9505e3,
037,
- 0x5F,
+ 0x5F,
"10",
"3950.5",
"3.9505e3",
"039",
true,
false,
- null,
- );
+ null,
+ );
// loop through each element of $values to check the behaviour of expm1()
$iterator = 1;