aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/text/unicode/norm/readwriter.go
diff options
context:
space:
mode:
authorale <ale@incal.net>2021-06-19 16:43:43 +0100
committerale <ale@incal.net>2021-06-19 16:43:43 +0100
commit833da3f33a5c727a8d7ccd034c43497c66793026 (patch)
tree2963588cf4fc88f77a39f2a4ab535a5bb44756a9 /vendor/golang.org/x/text/unicode/norm/readwriter.go
parenta3019b1703b29e74cfb8fd71b9f79b0c1da11395 (diff)
downloadcrawl-833da3f33a5c727a8d7ccd034c43497c66793026.tar.gz
crawl-833da3f33a5c727a8d7ccd034c43497c66793026.zip
go mod vendor
Diffstat (limited to 'vendor/golang.org/x/text/unicode/norm/readwriter.go')
-rw-r--r--vendor/golang.org/x/text/unicode/norm/readwriter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/golang.org/x/text/unicode/norm/readwriter.go b/vendor/golang.org/x/text/unicode/norm/readwriter.go
index b38096f..d926ee9 100644
--- a/vendor/golang.org/x/text/unicode/norm/readwriter.go
+++ b/vendor/golang.org/x/text/unicode/norm/readwriter.go
@@ -60,8 +60,8 @@ func (w *normWriter) Close() error {
}
// Writer returns a new writer that implements Write(b)
-// by writing f(b) to w. The returned writer may use an
-// internal buffer to maintain state across Write calls.
+// by writing f(b) to w. The returned writer may use an
+// an internal buffer to maintain state across Write calls.
// Calling its Close method writes any buffered data to w.
func (f Form) Writer(w io.Writer) io.WriteCloser {
wr := &normWriter{rb: reorderBuffer{}, w: w}