aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/aes/gcm_s390x.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/aes/gcm_s390x.go')
-rw-r--r--src/crypto/aes/gcm_s390x.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/aes/gcm_s390x.go b/src/crypto/aes/gcm_s390x.go
index 9eaaf7c21e..438310d3de 100644
--- a/src/crypto/aes/gcm_s390x.go
+++ b/src/crypto/aes/gcm_s390x.go
@@ -257,7 +257,7 @@ func (g *gcmAsm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {
if subtle.ConstantTimeCompare(expectedTag[:], tag) != 1 {
// The AESNI code decrypts and authenticates concurrently, and
// so overwrites dst in the event of a tag mismatch. That
- // behaviour is mimicked here in order to be consistent across
+ // behavior is mimicked here in order to be consistent across
// platforms.
for i := range out {
out[i] = 0