Skip to content

Commit 15c93e5

Browse files
authored
fix typo in caesar_cipher.py (TheAlgorithms#7761)
very character-> every character
1 parent 25757e6 commit 15c93e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ciphers/caesar_cipher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def encrypt(input_string: str, key: int, alphabet: str | None = None) -> str:
2727
=========================
2828
The caesar cipher is named after Julius Caesar who used it when sending
2929
secret military messages to his troops. This is a simple substitution cipher
30-
where very character in the plain-text is shifted by a certain number known
30+
where every character in the plain-text is shifted by a certain number known
3131
as the "key" or "shift".
3232
3333
Example:

0 commit comments

Comments
 (0)