aboutsummaryrefslogtreecommitdiff
path: root/stream.go
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-06-08 16:03:51 +0300
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-06-08 16:03:51 +0300
commit8f05edbec9fb5b0c7a4012ee746035a82e3e8bfb (patch)
treed814bf0778027004408c751a7066e044f66087f5 /stream.go
parentAdded RequestCtx.Redirect tests, which cover cases mentioned in https://githu... (diff)
downloadfasthttp-8f05edbec9fb5b0c7a4012ee746035a82e3e8bfb.tar.gz
fasthttp-8f05edbec9fb5b0c7a4012ee746035a82e3e8bfb.tar.bz2
fasthttp-8f05edbec9fb5b0c7a4012ee746035a82e3e8bfb.zip
typo fix
Diffstat (limited to 'stream.go')
-rw-r--r--stream.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.go b/stream.go
index c7cb5a9..349bd5b 100644
--- a/stream.go
+++ b/stream.go
@@ -21,7 +21,7 @@ type StreamWriter func(w *bufio.Writer)
//
// The returned reader may be passed to Response.SetBodyStream.
//
-// Close must be called on the returned reader after after all the required data
+// Close must be called on the returned reader after all the required data
// has been read. Otherwise goroutine leak may occur.
//
// See also Response.SetBodyStreamWriter.