From: Preetam Jinka Date: Wed, 2 Jul 2014 17:46:54 +0000 (-0700) Subject: crypto/cipher: fix typo in example comment X-Git-Tag: go1.4beta1~1175 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4fedb59aec525faadaa5dcdd55c9798f6b4468ae;p=gostls13.git crypto/cipher: fix typo in example comment LGTM=josharian R=golang-codereviews, josharian CC=golang-codereviews https://golang.org/cl/110330043 --- diff --git a/src/pkg/crypto/cipher/example_test.go b/src/pkg/crypto/cipher/example_test.go index 5677f6f2fe..1cfa982df4 100644 --- a/src/pkg/crypto/cipher/example_test.go +++ b/src/pkg/crypto/cipher/example_test.go @@ -277,7 +277,7 @@ func ExampleStreamWriter() { } // 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 decrypted result. }