diff options
Diffstat (limited to 'libgo/go/math/sqrt.go')
-rw-r--r-- | libgo/go/math/sqrt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/math/sqrt.go b/libgo/go/math/sqrt.go index 78475973eb0..56122b59814 100644 --- a/libgo/go/math/sqrt.go +++ b/libgo/go/math/sqrt.go @@ -87,7 +87,7 @@ func Sqrt(x float64) float64 { // // // Notes: Rounding mode detection omitted. The constants "mask", "shift", -// and "bias" are found in src/pkg/math/bits.go +// and "bias" are found in src/math/bits.go // Sqrt returns the square root of x. // |