From: Neil Smith <neil.git@njae.me.uk>
Date: Sat, 8 Mar 2014 03:28:58 +0000 (-0500)
Subject: Fixed docstring typo
X-Git-Url: https://git.njae.me.uk/?p=cipher-training.git;a=commitdiff_plain;h=d65c25e16129ca94e4f007614d539856b1879694

Fixed docstring typo
---

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'