diff --git a/src/crypto/cipher/gcm.go b/src/crypto/cipher/gcm.go index 505be50c6ae..9b86b06c980 100644 --- a/src/crypto/cipher/gcm.go +++ b/src/crypto/cipher/gcm.go @@ -39,7 +39,7 @@ type AEAD interface { // value passed to Seal. // // To reuse ciphertext's storage for the decrypted output, use ciphertext[:0] - // as dst. Otherwise, the remaining capacity of dst must not overlap plaintext. + // as dst. Otherwise, the remaining capacity of dst must not overlap ciphertext. // // Even if the function fails, the contents of dst, up to its capacity, // may be overwritten.