FIXED:
* tplx/sprigx float to string non-truncating was... truncating. it no
  longer is.
This commit is contained in:
brent saner
2026-01-30 20:21:34 -05:00
parent 82c69ec542
commit 67c7faf449
5 changed files with 20 additions and 25 deletions

View File

@@ -45,7 +45,7 @@ func numFloat64Str(f float64) (s string) {
var bf *big.Float
bf = big.NewFloat(f)
s = bf.String()
s = bf.Text('f', -1)
return
}