fix typo in caesar_cipher.py (#7761)

very character-> every character
This commit is contained in:
MoPaMo
2022-10-27 23:03:34 +02:00
committed by GitHub
parent 25757e697c
commit 15c93e5f4b

View File

@ -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 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 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". as the "key" or "shift".
Example: Example: