aboutsummaryrefslogtreecommitdiff
path: root/src/math/expm1.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/expm1.go')
-rw-r--r--src/math/expm1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/expm1.go b/src/math/expm1.go
index ff1c82f524..f8e45d9bec 100644
--- a/src/math/expm1.go
+++ b/src/math/expm1.go
@@ -114,7 +114,7 @@ package math
//
// Expm1 returns e**x - 1, the base-e exponential of x minus 1.
-// It is more accurate than Exp(x) - 1 when x is near zero.
+// It is more accurate than [Exp](x) - 1 when x is near zero.
//
// Special cases are:
//