From: Robert Griesemer Date: Wed, 15 Jul 2009 00:08:09 +0000 (-0700) Subject: fixed typo X-Git-Tag: weekly.2009-11-06~1143 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=eb815c0fa2932af55e4850d7d1f7d46becff45c9;p=gostls13.git fixed typo TBR=r OCL=31647 CL=31647 --- 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 {