From 7f183dbc6f36d1cb71b302cebfabe8bde48ebd8f Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Fri, 1 Sep 2017 12:51:31 +0100 Subject: [PATCH] correct spelling mistake --- writer_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writer_test.go b/writer_test.go index 8bab07c..3dcf3a5 100644 --- a/writer_test.go +++ b/writer_test.go @@ -29,7 +29,7 @@ func (c chunkedWriter) Write(p []byte) (int, error) { return n, nil } -// analagous to Write(), but w/ str +// analogous to Write(), but w/ str func (c chunkedWriter) WriteString(s string) (int, error) { l := len(s) n := 0