From a8bb5600053fc0f6790e84f7f68cfaceff49f132 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Thu, 21 Jan 2016 22:11:49 +0530 Subject: [PATCH] fix the ROT13 link in ceasars cipher challenge --- .../basic-bonfires.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-bonfires.json b/challenges/01-front-end-development-certification/basic-bonfires.json index 491e5f6a76..f5e47012ac 100644 --- a/challenges/01-front-end-development-certification/basic-bonfires.json +++ b/challenges/01-front-end-development-certification/basic-bonfires.json @@ -655,8 +655,8 @@ "id": "56533eb9ac21ba0edf2244e2", "description": [ "One of the simplest and most widely known ciphers is a Caesar cipher, also known as a shift cipher. In a shift cipher the meanings of the letters are shifted by some set amount.", - "A common modern use is the ROT13 cipher, where the values of the letters are shifted by 13 places. Thus 'A' ↔ 'N', 'B' ↔ 'O' and so on.", - "Write a function which takes a ROT13 encoded string as input and returns a decoded string.", + "A common modern use is the ROT13 cipher, where the values of the letters are shifted by 13 places. Thus 'A' ↔ 'N', 'B' ↔ 'O' and so on.", + "Write a function which takes a ROT13 encoded string as input and returns a decoded string.", "All letters will be uppercase. Do not transform any non-alphabetic character (i.e. spaces, punctuation), but do pass them on.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ],