Skip to content

Resolves issue #12306 #12319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update documentation
  • Loading branch information
Y-Srivaishnavi authored Oct 29, 2024
commit 2bef9b9cb35e7f55aa3544f4fd7f2e467fac3a1c
4 changes: 2 additions & 2 deletions ciphers/rot13.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def apply_rot13(s: str) -> str:
"""
Performs a special case of the Caesar cipher.
Rotates the plaintext by 13 letters.
Performs a special reversible case of the Caesar cipher.
Rotates a text by 13 letters.
Also see: https://en.wikipedia.org/wiki/ROT13

Example usage:
Expand Down