From 63ec70d4e1350f44caf950cf3f675ae2cb7ea453 Mon Sep 17 00:00:00 2001 From: Markus Kusano Date: Wed, 9 Jul 2025 19:52:09 +0000 Subject: [PATCH] crypto/cipher: Fix comment punctuation Change-Id: I7dc086a87d28ab847288eed13f719421420cd004 Reviewed-on: https://go-review.googlesource.com/c/go/+/686997 Reviewed-by: Alan Donovan LUCI-TryBot-Result: Go LUCI --- src/crypto/cipher/cfb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/cipher/cfb.go b/src/crypto/cipher/cfb.go index b493e05fe2..7de682fac3 100644 --- a/src/crypto/cipher/cfb.go +++ b/src/crypto/cipher/cfb.go @@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream { func newCFB(block Block, iv []byte, decrypt bool) Stream { blockSize := block.BlockSize() if len(iv) != blockSize { - // stack trace will indicate whether it was de or encryption + // Stack trace will indicate whether it was de- or en-cryption. panic("cipher.newCFB: IV length must equal block size") } x := &cfb{ -- 2.50.0