summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-03-05 10:30:50 -0800
committerRobert Griesemer <gri@golang.org>2010-03-05 10:30:50 -0800
commit99a7bef8b1eaaba98b8d9806c900878266cbfd5d (patch)
tree6b2c49017a6121c2264de10d1b114668d3e5e35a
parentafca5d8cad43101800b2e5bdcdbb4787a0ce8497 (diff)
downloadgolang-99a7bef8b1eaaba98b8d9806c900878266cbfd5d.tar.gz
frexp.go: remove html from comment
R=r CC=golang-dev http://codereview.appspot.com/250041
-rw-r--r--src/pkg/math/frexp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/frexp.go b/src/pkg/math/frexp.go
index 8b6d45606..ab226e774 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 × 2<sup>exp</sup>,
+// 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