1
0
mirror of https://github.com/golang/go synced 2024-11-12 00:30:22 -07:00

bufio: Fix typo in scan.go documentation

This commit is contained in:
Mickey Reiss 2019-05-22 21:55:39 -07:00 committed by GitHub
parent 3e9d8e2e1b
commit 635e35c019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ var (
const (
// MaxScanTokenSize is the maximum size used to buffer a token
// unless the user provides an explicit buffer with Scan.Buffer.
// unless the user provides an explicit buffer with Scanner.Buffer.
// The actual maximum token size may be smaller as the buffer
// may need to include, for instance, a newline.
MaxScanTokenSize = 64 * 1024