Fixed docstring typo
[cipher-training.git] / cipher.py
index c5d542bb915b4cfd0775d5c100e8dce46a271d88..2386ae802f35d7e274fc7719827212362b5d032f 100644 (file)
--- a/cipher.py
+++ b/cipher.py
@@ -155,7 +155,7 @@ def caesar_encipher(message, shift):
     return ''.join(enciphered)
 
 def caesar_decipher(message, shift):
-    """Encipher a message with the Caesar cipher of given shift
+    """Decipher a message with the Caesar cipher of given shift
     
     >>> caesar_decipher('bcd', 1)
     'abc'