diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-11-14 21:43:01 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-11-14 21:43:01 (GMT) |
commit | a3100de9ce508bb49dfb2616a32e3fd584b6064e (patch) | |
tree | c572c101f9ecdd1e6b510299bbb7ad33a40c52a9 /Doc/lib | |
parent | 00429dba08b82cacd53258fa9c57b2cb4e9c5a2a (diff) | |
download | cpython-a3100de9ce508bb49dfb2616a32e3fd584b6064e.zip cpython-a3100de9ce508bb49dfb2616a32e3fd584b6064e.tar.gz cpython-a3100de9ce508bb49dfb2616a32e3fd584b6064e.tar.bz2 |
Fix for SF bug 122176: Error in rotor module documentation.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/librotor.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/librotor.tex b/Doc/lib/librotor.tex index 6ed031c..ba7c402 100644 --- a/Doc/lib/librotor.tex +++ b/Doc/lib/librotor.tex @@ -54,13 +54,13 @@ string containing the ciphertext. \begin{methoddesc}[rotor]{decrypt}{ciphertext} Reset the rotor object to its initial state and decrypt \var{ciphertext}, -returning a string containing the ciphertext. The plaintext string will +returning a string containing the plaintext. The plaintext string will always be the same length as the ciphertext. \end{methoddesc} \begin{methoddesc}[rotor]{decryptmore}{ciphertext} Decrypt \var{ciphertext} without resetting the rotor object, and return a -string containing the ciphertext. +string containing the plaintext. \end{methoddesc} An example usage: |