Skip to content

Commit cf70ea8

Browse files
committed
1 parent f8c8c35 commit cf70ea8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exercises/affine-cipher/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Where:
2020

2121
- `i` is the letter's index from `0` to the length of the alphabet - 1.
2222
- `m` is the length of the alphabet.
23-
For the Roman alphabet `m` is `26`.
23+
For the English alphabet `m` is `26`.
2424
- `a` and `b` are integers which make up the encryption key.
2525

2626
Values `a` and `m` must be _coprime_ (or, _relatively prime_) for automatic decryption to succeed, i.e., they have number `1` as their only common factor (more information can be found in the [Wikipedia article about coprime integers][coprime-integers]).

exercises/atbash-cipher/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Create an implementation of the Atbash cipher, an ancient encryption system crea
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.
77

8-
An Atbash cipher for the Latin alphabet would be as follows:
8+
An Atbash cipher for the English alphabet would be as follows:
99

1010
```text
1111
Plain: abcdefghijklmnopqrstuvwxyz

exercises/rotational-cipher/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The letter is shifted for as many values as the value of the key.
99
The general notation for rotational ciphers is `ROT + <key>`.
1010
The most commonly used rotational cipher is `ROT13`.
1111

12-
A `ROT13` on the Latin alphabet would be as follows:
12+
A `ROT13` on the English alphabet would be as follows:
1313

1414
```text
1515
Plain: abcdefghijklmnopqrstuvwxyz

0 commit comments

Comments
 (0)