vendor/golang.org/x/text/unicode/norm/readwriter.go
changeset 251 1c52a0eeb952
parent 242 2a9ec03fe5a1
--- a/vendor/golang.org/x/text/unicode/norm/readwriter.go	Wed Sep 18 19:17:42 2019 +0200
+++ b/vendor/golang.org/x/text/unicode/norm/readwriter.go	Sun Feb 16 18:54:01 2020 +0100
@@ -60,8 +60,8 @@
 }
 
 // Writer returns a new writer that implements Write(b)
-// by writing f(b) to w.  The returned writer may use an
-// an internal buffer to maintain state across Write calls.
+// by writing f(b) to w. The returned writer may use 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}