From e352aa9c40c5081f6989f18224cd61763bc4be77 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 11 Mar 2010 16:40:32 -0800 Subject: math, path: minor comment fixes R=r CC=golang-dev http://codereview.appspot.com/444043 --- src/pkg/math/ldexp.go | 2 +- src/pkg/path/path.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pkg/math/ldexp.go b/src/pkg/math/ldexp.go index e8223703b..dc6b3a820 100644 --- a/src/pkg/math/ldexp.go +++ b/src/pkg/math/ldexp.go @@ -5,7 +5,7 @@ package math // Ldexp is the inverse of Frexp. -// It returns frac × 2exp. +// It returns frac × 2^exp. func Ldexp(frac float64, exp int) float64 { // TODO(rsc): Remove manual inlining of IsNaN, IsInf // when compiler does it for us diff --git a/src/pkg/path/path.go b/src/pkg/path/path.go index 3ce2166e3..71d8b4215 100644 --- a/src/pkg/path/path.go +++ b/src/pkg/path/path.go @@ -115,7 +115,7 @@ func Split(path string) (dir, file string) { return "", path } -// Join joins any number of path elemets into a single path, adding a +// Join joins any number of path elements into a single path, adding a // separating slash if necessary. All empty strings are ignored. func Join(elem ...string) string { for i, e := range elem { -- cgit v1.2.1