From: Preetam Jinka Date: Sat, 28 Jun 2014 17:11:26 +0000 (-0700) Subject: crypto/cipher: Fix typo in example comment X-Git-Tag: go1.4beta1~1202 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=873ceeff543b1fc0dddbc354b674819d302f5362;p=gostls13.git crypto/cipher: Fix typo in example comment LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/101510047 --- diff --git a/src/pkg/crypto/cipher/example_test.go b/src/pkg/crypto/cipher/example_test.go index 373f6791be..5677f6f2fe 100644 --- a/src/pkg/crypto/cipher/example_test.go +++ b/src/pkg/crypto/cipher/example_test.go @@ -240,7 +240,7 @@ func ExampleStreamReader() { } // Note that this example is simplistic in that it omits any - // authentication of the encrypted data. It you were actually to use + // authentication of the encrypted data. If you were actually to use // StreamReader in this manner, an attacker could flip arbitrary bits in // the output. }