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/bufio | |
| 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/bufio')
| -rw-r--r-- | src/bufio/scan.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bufio/scan.go b/src/bufio/scan.go index 4846d4f733..e247cbcf32 100644 --- a/src/bufio/scan.go +++ b/src/bufio/scan.go @@ -26,7 +26,6 @@ import ( // advanced arbitrarily far past the last token. Programs that need more // control over error handling or large tokens, or must run sequential scans // on a reader, should use bufio.Reader instead. -// type Scanner struct { r io.Reader // The reader provided by the client. split SplitFunc // The function to split the tokens. |
