Skip to content

Commit aac54c1

Browse files
authored
Correct capitalization of 'atbash' to 'Atbash' (#2485)
* atbash-cipher: Correct capitalization of 'atbash' to 'Atbash' in instructions * correct capitalization across all exercises
1 parent 72c16a8 commit aac54c1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

exercises/affine-cipher/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Create an implementation of the affine cipher, an ancient encryption system crea
44

55
The affine cipher is a type of monoalphabetic substitution cipher.
66
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.
7-
Although all monoalphabetic ciphers are weak, the affine cipher is much stronger than the atbash cipher, because it has many more keys.
7+
Although all monoalphabetic ciphers are weak, the affine cipher is much stronger than the Atbash cipher, because it has many more keys.
88

99
[//]: # " monoalphabetic as spelled by Merriam-Webster, compare to polyalphabetic "
1010

exercises/atbash-cipher/canonical-data.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"exercise": "atbash-cipher",
33
"comments": [
44
"The tests are divided into two groups: ",
5-
"* Encoding from English to atbash cipher",
6-
"* Decoding from atbash cipher to all-lowercase-mashed-together English"
5+
"* Encoding from English to Atbash cipher",
6+
"* Decoding from Atbash cipher to all-lowercase-mashed-together English"
77
],
88
"cases": [
99
{
1010
"description": "encode",
11-
"comments": ["Test encoding from English to atbash"],
11+
"comments": ["Test encoding from English to Atbash"],
1212
"cases": [
1313
{
1414
"uuid": "2f47ebe1-eab9-4d6b-b3c6-627562a31c77",
@@ -86,7 +86,7 @@
8686
},
8787
{
8888
"description": "decode",
89-
"comments": ["Test decoding from atbash to English"],
89+
"comments": ["Test decoding from Atbash to English"],
9090
"cases": [
9191
{
9292
"uuid": "bb50e087-7fdf-48e7-9223-284fe7e69851",

exercises/atbash-cipher/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Description
22

3-
Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.
3+
Create an implementation of the Atbash cipher, an ancient encryption system created in the Middle East.
44

55
The Atbash cipher is a simple substitution cipher that relies on transposing all the letters in the alphabet such that the resulting alphabet is backwards.
66
The first letter is replaced with the last letter, the second with the second-last, and so on.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Atbash Cipher"
2-
blurb = "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East."
2+
blurb = "Create an implementation of the Atbash cipher, an ancient encryption system created in the Middle East."
33
source = "Wikipedia"
44
source_url = "https://en.wikipedia.org/wiki/Atbash"

0 commit comments

Comments
 (0)