summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {