diff options
| author | Russ Cox <rsc@golang.org> | 2022-01-30 20:11:47 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2022-04-01 18:18:07 +0000 |
| commit | 690ac4071fa3e07113bf371c9e74394ab54d6749 (patch) | |
| tree | 668fba312c6e891b11dce2c3db163312d3ed8fde /src/math/big/floatconv.go | |
| parent | 89dff118ada91061350aa149b54a2ab4fdbd6810 (diff) | |
| download | go-690ac4071fa3e07113bf371c9e74394ab54d6749.tar.xz | |
all: remove trailing blank doc comment lines
A future change to gofmt will rewrite
// Doc comment.
//
func f()
to
// Doc comment.
func f()
Apply that change preemptively to all doc comments.
For #51082.
Change-Id: I4023e16cfb0729b64a8590f071cd92f17343081d
Reviewed-on: https://go-review.googlesource.com/c/go/+/384259
Trust: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/math/big/floatconv.go')
| -rw-r--r-- | src/math/big/floatconv.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/math/big/floatconv.go b/src/math/big/floatconv.go index 57b7df3936..93f7195219 100644 --- a/src/math/big/floatconv.go +++ b/src/math/big/floatconv.go @@ -153,7 +153,6 @@ func (z *Float) scan(r io.ByteScanner, base int) (f *Float, b int, err error) { // for p, q := uint64(0), uint64(1); p < q; p, q = q, q*5 { // fmt.Println(q) // } -// var pow5tab = [...]uint64{ 1, 5, @@ -257,7 +256,6 @@ func (z *Float) pow5(n uint64) *Float { // // The returned *Float f is nil and the value of z is valid but not // defined if an error is reported. -// func (z *Float) Parse(s string, base int) (f *Float, b int, err error) { // scan doesn't handle ±Inf if len(s) == 3 && (s == "Inf" || s == "inf") { |
