From d65c25e16129ca94e4f007614d539856b1879694 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Fri, 7 Mar 2014 22:28:58 -0500 Subject: [PATCH] Fixed docstring typo --- cipher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipher.py b/cipher.py index c5d542b..2386ae8 100644 --- 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' -- 2.34.1