1
0
mirror of https://github.com/golang/go synced 2024-11-23 20:40:07 -07:00

crypto/cipher: fix typo in example comment

LGTM=josharian
R=golang-codereviews, josharian
CC=golang-codereviews
https://golang.org/cl/110330043
This commit is contained in:
Preetam Jinka 2014-07-02 10:46:54 -07:00 committed by Josh Bleecher Snyder
parent 22c3f67cd6
commit 4fedb59aec

View File

@ -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.
}