From 4e02a36b075d538ebdcf5401500f10e1dfede67a Mon Sep 17 00:00:00 2001 From: Smaug123 Date: Tue, 8 Nov 2016 19:57:54 +0000 Subject: [PATCH] Fix some incorrect documentation in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb4466d..32d1d5a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Encrypt the text "Hello, World!" with a Caesar offset of 3 (that is, sending 'a' to 'd'): ```julia encrypt_caesar("Hello, World!", 3) -# outputs "khoor, zruog!" +# outputs "KHOOR, ZRUOG!" ``` Notice that `encrypt_caesar` turns everything upper-case, but retains symbols. @@ -97,7 +97,7 @@ encrypt_monoalphabetic("Hello, World!", "DEFGHIJKLMNOPQRSTUVWXYZABC") # outputs "KHOOR, ZRUOG!" ``` -Decrypt the same text, this time demonstrating the dictionary capability: +Decrypt the same text: ```julia decrypt_monoalphabetic("Khoor, Zruog!", "DEFGHIJKLMNOPQRSTUVWXYZABC")