From 9b0692d846e71c734dc6292e99b9433d5f6300d1 Mon Sep 17 00:00:00 2001 From: Smaug123 Date: Mon, 4 Jan 2016 11:45:47 +0000 Subject: [PATCH] Fix typo in caesar.jl docstring --- src/caesar.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caesar.jl b/src/caesar.jl index c3c0bee..9ded05d 100644 --- a/src/caesar.jl +++ b/src/caesar.jl @@ -13,7 +13,7 @@ function encrypt_caesar(plaintext, key::Integer) end """ -Decrypts the given plaintext according to the Caesar cipher. +Decrypts the given ciphertext according to the Caesar cipher. The key is given as an integer, being the offset of each character; so decrypt_caesar("abcd", 1) == "zabc".