From: Rob Pike Date: Fri, 19 Apr 2013 00:37:09 +0000 (-0700) Subject: doc/go1.1.html: document io.ErrNoProgress X-Git-Tag: go1.1rc2~76 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1f4055a0ec47c86ebc35bf6f937797b2f2f1c32e;p=gostls13.git doc/go1.1.html: document io.ErrNoProgress R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8833050 --- diff --git a/doc/go1.1.html b/doc/go1.1.html index 71517fc2d8..46174aad10 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -832,6 +832,8 @@ reads progressive JPEG files and handles a few more subsampling configurations. The io package now exports the io.ByteWriter interface to capture the common functionality of writing a byte at a time. +It also exports a new error, ErrNoProgress, +used to indicate a Read implementation is looping without delivering data.