Skip to content

Commit

Permalink
fix typo in caesar_cipher.py (TheAlgorithms#7761)
Browse files Browse the repository at this point in the history
very character-> every character
  • Loading branch information
MoPaMo authored Oct 27, 2022
1 parent 25757e6 commit 15c93e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ciphers/caesar_cipher.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def encrypt(input_string: str, key: int, alphabet: str | None = None) -> str:
=========================
The caesar cipher is named after Julius Caesar who used it when sending
secret military messages to his troops. This is a simple substitution cipher
where very character in the plain-text is shifted by a certain number known
where every character in the plain-text is shifted by a certain number known
as the "key" or "shift".
Example:
Expand Down

0 comments on commit 15c93e5

Please sign in to comment.