From: Robert Griesemer Date: Fri, 5 Mar 2010 18:30:50 +0000 (-0800) Subject: frexp.go: remove html from comment X-Git-Tag: weekly.2010-03-15~54 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a1458298737dd52783df7f28f92e120bf56b6972;p=gostls13.git frexp.go: remove html from comment R=r CC=golang-dev https://golang.org/cl/250041 --- diff --git a/src/pkg/math/frexp.go b/src/pkg/math/frexp.go index 8b6d456067..ab226e7746 100644 --- a/src/pkg/math/frexp.go +++ b/src/pkg/math/frexp.go @@ -6,7 +6,7 @@ package math // Frexp breaks f into a normalized fraction // and an integral power of two. -// It returns frac and exp satisfying f == frac × 2exp, +// It returns frac and exp satisfying f == frac × 2^exp, // with the absolute value of frac in the interval [½, 1). func Frexp(f float64) (frac float64, exp int) { // TODO(rsc): Remove manual inlining of IsNaN, IsInf