Fix typo in caesar.jl docstring

This commit is contained in:
Smaug123
2016-01-04 11:45:47 +00:00
parent b47fa7d599
commit 9b0692d846

View File

@@ -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".