patch 8.2.3914: various spelling mistakes in comments
Problem: Various spelling mistakes in comments.
Solution: Fix the mistakes. (Dominique Pellé, closes #9416)
diff --git a/src/blowfish.c b/src/blowfish.c
index 4502a1c..4f6ce01 100644
--- a/src/blowfish.c
+++ b/src/blowfish.c
@@ -651,7 +651,7 @@
state->method_state = bfs;
// "blowfish" uses a 64 byte buffer, causing it to repeat 8 byte groups 8
- // times. "blowfish2" uses a 8 byte buffer to avoid repeating.
+ // times. "blowfish2" uses an 8 byte buffer to avoid repeating.
bfs->cfb_len = state->method_nr == CRYPT_M_BF ? BF_MAX_CFB_LEN : BF_BLOCK;
if (blowfish_self_test() == FAIL)