]> Cypherpunks repositories - gostls13.git/commitdiff
fixed typo
authorRobert Griesemer <gri@golang.org>
Wed, 15 Jul 2009 00:08:09 +0000 (17:08 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 15 Jul 2009 00:08:09 +0000 (17:08 -0700)
TBR=r
OCL=31647
CL=31647

src/pkg/math/log.go

index b24175b6394412aa36a4b95a6ac3cc60f0d0e853..603a935acd63bb145ed67eacb8288ffad17e9832 100644 (file)
@@ -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 {