From 593f74bbab63d34c7060918088bcbad686c31c66 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 6 Mar 2012 17:57:23 +0000 Subject: libgo: Update to weekly.2012-03-04 release. From-SVN: r185010 --- libgo/go/strconv/extfloat.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo/go/strconv') diff --git a/libgo/go/strconv/extfloat.go b/libgo/go/strconv/extfloat.go index 64ab84f..aa5e560 100644 --- a/libgo/go/strconv/extfloat.go +++ b/libgo/go/strconv/extfloat.go @@ -477,7 +477,7 @@ func (f *extFloat) ShortestDecimal(d *decimal, lower, upper *extFloat) bool { // all data is known with a error estimate of ulpBinary*ε. func adjustLastDigit(d *decimal, currentDiff, targetDiff, maxDiff, ulpDecimal, ulpBinary uint64) bool { if ulpDecimal < 2*ulpBinary { - // Appromixation is too wide. + // Approximation is too wide. return false } for currentDiff+ulpDecimal/2+ulpBinary < targetDiff { -- cgit v1.1