Update documentation

This commit is contained in:
Srivaishnavi Yaddanapudi 2024-10-29 17:06:56 +05:30 committed by GitHub
parent 5efef35d8d
commit 2bef9b9cb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
def apply_rot13(s: str) -> str: def apply_rot13(s: str) -> str:
""" """
Performs a special case of the Caesar cipher. Performs a special reversible case of the Caesar cipher.
Rotates the plaintext by 13 letters. Rotates a text by 13 letters.
Also see: https://en.wikipedia.org/wiki/ROT13 Also see: https://en.wikipedia.org/wiki/ROT13
Example usage: Example usage: