Skip to content

Commit 510c20c

Browse files
committed
correct capitalization across all exercises
1 parent d253e8d commit 510c20c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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/metadata.toml

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)