From: Markus Kusano Date: Wed, 9 Jul 2025 19:52:09 +0000 (+0000) Subject: crypto/cipher: Fix comment punctuation X-Git-Tag: go1.25rc3~5^2~38 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=63ec70d4e1;p=gostls13.git 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 --- 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{