From eb815c0fa2932af55e4850d7d1f7d46becff45c9 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 14 Jul 2009 17:08:09 -0700 Subject: [PATCH] fixed typo TBR=r OCL=31647 CL=31647 --- src/pkg/math/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/math/log.go b/src/pkg/math/log.go index b24175b639..603a935acd 100644 --- a/src/pkg/math/log.go +++ b/src/pkg/math/log.go @@ -120,7 +120,7 @@ func Log(x float64) float64 { return k*Ln2Hi - ((hfsq-(s*(hfsq+R)+k*Ln2Lo)) - f); } -// Log10 returns the decimal logarthm of x. +// Log10 returns the decimal logarithm of x. // The special cases are the same as for Log. func Log10(x float64) float64 { if x <= 0 { -- 2.48.1