diff --git a/exercises/affine-cipher/description.md b/exercises/affine-cipher/description.md index d13c235aa..8006b747d 100644 --- a/exercises/affine-cipher/description.md +++ b/exercises/affine-cipher/description.md @@ -4,7 +4,7 @@ Create an implementation of the affine cipher, an ancient encryption system crea The affine cipher is a type of monoalphabetic substitution cipher. Each character is mapped to its numeric equivalent, encrypted with a mathematical function and then converted to the letter relating to its new numeric value. -Although all monoalphabetic ciphers are weak, the affine cipher is much stronger than the atbash cipher, because it has many more keys. +Although all monoalphabetic ciphers are weak, the affine cipher is much stronger than the Atbash cipher, because it has many more keys. [//]: # " monoalphabetic as spelled by Merriam-Webster, compare to polyalphabetic " diff --git a/exercises/atbash-cipher/canonical-data.json b/exercises/atbash-cipher/canonical-data.json index aa4687ba4..984ea2d6b 100644 --- a/exercises/atbash-cipher/canonical-data.json +++ b/exercises/atbash-cipher/canonical-data.json @@ -2,13 +2,13 @@ "exercise": "atbash-cipher", "comments": [ "The tests are divided into two groups: ", - "* Encoding from English to atbash cipher", - "* Decoding from atbash cipher to all-lowercase-mashed-together English" + "* Encoding from English to Atbash cipher", + "* Decoding from Atbash cipher to all-lowercase-mashed-together English" ], "cases": [ { "description": "encode", - "comments": ["Test encoding from English to atbash"], + "comments": ["Test encoding from English to Atbash"], "cases": [ { "uuid": "2f47ebe1-eab9-4d6b-b3c6-627562a31c77", @@ -86,7 +86,7 @@ }, { "description": "decode", - "comments": ["Test decoding from atbash to English"], + "comments": ["Test decoding from Atbash to English"], "cases": [ { "uuid": "bb50e087-7fdf-48e7-9223-284fe7e69851", diff --git a/exercises/atbash-cipher/metadata.toml b/exercises/atbash-cipher/metadata.toml index 191181cbd..aa2098892 100644 --- a/exercises/atbash-cipher/metadata.toml +++ b/exercises/atbash-cipher/metadata.toml @@ -1,4 +1,4 @@ title = "Atbash Cipher" -blurb = "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East." +blurb = "Create an implementation of the Atbash cipher, an ancient encryption system created in the Middle East." source = "Wikipedia" source_url = "https://en.wikipedia.org/wiki/Atbash"