summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-07-14 17:08:09 -0700
committerRobert Griesemer <gri@golang.org>2009-07-14 17:08:09 -0700
commit90d937d81214082a58c4b85634021dd33cad45b9 (patch)
treea21e95b5e52ccee12fa0fc2003e195d05cd28de4
parent9d1b4d375de61f2c2bb71d33955ed8f39deb3755 (diff)
downloadgolang-90d937d81214082a58c4b85634021dd33cad45b9.tar.gz
fixed typo
TBR=r OCL=31647 CL=31647
-rw-r--r--src/pkg/math/log.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/log.go b/src/pkg/math/log.go
index b24175b63..603a935ac 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 {