Commit a1458298 authored by Robert Griesemer's avatar Robert Griesemer

frexp.go: remove html from comment

R=r
CC=golang-dev
https://golang.org/cl/250041
parent 9a65a06e
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment