io: fix spelling in documentation for writerFunc

Change-Id: I9f55188859944e1b2b140d3547bcfcb335c5ff50
Reviewed-on: https://go-review.googlesource.com/c/go/+/351370
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Robert Griesemer <gri@golang.org>
diff --git a/src/io/multi_test.go b/src/io/multi_test.go
index 909b6d8..c3a44fd 100644
--- a/src/io/multi_test.go
+++ b/src/io/multi_test.go
@@ -141,7 +141,7 @@
 	}
 }
 
-// writerFunc is an Writer implemented by the underlying func.
+// writerFunc is a Writer implemented by the underlying func.
 type writerFunc func(p []byte) (int, error)
 
 func (f writerFunc) Write(p []byte) (int, error) {