Skip to content

Commit 84dc67e

Browse files
committed
Fixed typos in src/ciphers/salsa.rs
1 parent 7c1542b commit 84dc67e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ciphers/salsa.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ macro_rules! quarter_round {
1919
/// seems to be a sane choice.
2020
///
2121
/// The 16 input numbers can be thought of as the elements of a 4x4 matrix like
22-
/// the one bellow, on which we do the main operations of the cipher.
22+
/// the one below, on which we do the main operations of the cipher.
2323
///
2424
/// ```text
2525
/// +----+----+----+----+
@@ -33,7 +33,7 @@ macro_rules! quarter_round {
3333
/// +----+----+----+----+
3434
/// ```
3535
///
36-
/// As per the diagram bellow, `input[0, 5, 10, 15]` are the constants mentioned
36+
/// As per the diagram below, `input[0, 5, 10, 15]` are the constants mentioned
3737
/// above, `input[1, 2, 3, 4, 11, 12, 13, 14]` is filled with the key, and
3838
/// `input[6, 7, 8, 9]` should be filled with nonce and counter values. The output
3939
/// of the function is stored in `output` variable and can be XORed with the

0 commit comments

Comments
 (0)