Correct typo from 'two large' to 'too large' (#14135)

Fix typo in documentation regarding shift size.
This commit is contained in:
Parth Pawar
2026-01-25 19:33:25 +05:30
committed by GitHub
parent 8fa4161587
commit 8106aea67f

View File

@@ -45,7 +45,7 @@ def encrypt(input_string: str, key: int, alphabet: str | None = None) -> str:
And our shift is ``2``
We can then encode the message, one letter at a time. ``H`` would become ``J``,
since ``J`` is two letters away, and so on. If the shift is ever two large, or
since ``J`` is two letters away, and so on. If the shift is ever too large, or
our letter is at the end of the alphabet, we just start at the beginning
(``Z`` would shift to ``a`` then ``b`` and so on).