diff options
Diffstat (limited to 'src/pkg/math/const.go')
-rw-r--r-- | src/pkg/math/const.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/math/const.go b/src/pkg/math/const.go index 19fa8fa7e..68ecefaa9 100644 --- a/src/pkg/math/const.go +++ b/src/pkg/math/const.go @@ -18,9 +18,9 @@ const ( SqrtPhi = 1.27201964951406896425242246173749149171560804184009624861664038; // A139339 Ln2 = 0.693147180559945309417232121458176568075500134360255254120680009; // A002162 - Log2E = 1/Ln2; + Log2E = 1 / Ln2; Ln10 = 2.30258509299404568401799145468436420760110148862877297603332790; // A002392 - Log10E = 1/Ln10; + Log10E = 1 / Ln10; ) // Floating-point limit values. |