1
0
mirror of https://github.com/golang/go synced 2024-11-18 15:54:42 -07:00

math/big: fix typos

Change-Id: Icb1490f97584d61823339ae809b88d423b185e64
Reviewed-on: https://go-review.googlesource.com/3751
Reviewed-by: Alan Donovan <adonovan@google.com>
This commit is contained in:
Robert Griesemer 2015-01-30 16:33:31 -08:00
parent 4c91c0d07b
commit 6966e07ae7
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ const debugFloat = true // enable for debugging
// rounding, Float arithmetic operations emulate the corresponding float32
// or float64 IEEE-754 operations (except for denormalized numbers and NaNs).
//
// CAUTION: THIS IS WORK IN PROGRESS - DO NOT USE YET.
// CAUTION: THIS IS WORK IN PROGRESS - USE AT YOUR OWN RISK.
//
type Float struct {
mode RoundingMode

View File

@ -184,7 +184,7 @@ func ParseFloat(s string, base int, prec uint, mode RoundingMode) (f *Float, b i
//
// BUG(gri) Currently, Format only accepts the 'b' and 'p' format.
func (x *Float) Format(format byte, prec int) string {
const extra = 10 // TODO(gri) determine a good/better vaue here
const extra = 10 // TODO(gri) determine a good/better value here
return string(x.Append(make([]byte, 0, prec+extra), format, prec))
}