Skip to content

Commit 63ec70d

Browse files
author
Markus Kusano
committed
crypto/cipher: Fix comment punctuation
Change-Id: I7dc086a87d28ab847288eed13f719421420cd004 Reviewed-on: https://go-review.googlesource.com/c/go/+/686997 Reviewed-by: Alan Donovan <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 8131635 commit 63ec70d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crypto/cipher/cfb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {
8686
func newCFB(block Block, iv []byte, decrypt bool) Stream {
8787
blockSize := block.BlockSize()
8888
if len(iv) != blockSize {
89-
// stack trace will indicate whether it was de or encryption
89+
// Stack trace will indicate whether it was de- or en-cryption.
9090
panic("cipher.newCFB: IV length must equal block size")
9191
}
9292
x := &cfb{

0 commit comments

Comments
 (0)