Skip to content

Commit b8c3f4f

Browse files
authored
fix some typos (#279)
1 parent 6fcda55 commit b8c3f4f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ blake2 = "0.9"
7575
```
7676

7777
Note that crates in this repository have an enabled by default `std` feature.
78-
So if you plan to use the crate in `no_std` enviroments, don't forget to disable it:
78+
So if you plan to use the crate in `no_std` environments, don't forget to disable it:
7979

8080
```toml
8181
[dependencies]
@@ -116,7 +116,7 @@ let hash = Blake2b::new()
116116
println!("Result: {:x}", hash);
117117
```
118118

119-
If the whole message is available you also can use convinience `digest` method:
119+
If the whole message is available you also can use convenience `digest` method:
120120

121121
```Rust
122122
use blake2::{Blake2b, Digest};

shabal/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ There are 5 standard algorithms specified in the Shabal standard:
2020
* `Shabal384`, which is the `Shabal` algorithm with the result truncated to 384 bits.
2121
* `Shabal512`, which is the `Shabal` algorithm with the result not truncated.
2222

23-
There is a single Shabal algorithm. All variants have different intialisation and apart
24-
Shabal512 truncate the result.
23+
There is a single Shabal algorithm. All variants have different initialisation and apart
24+
from Shabal512 all truncate the result.
2525

2626
## Usage
2727

shabal/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
//! * `Shabal384`, which is the `Shabal` algorithm with the result truncated to 384 bits.
99
//! * `Shabal512`, which is the `Shabal` algorithm with the result not truncated.
1010
//!
11-
//! There is a single Shabal algorithm. All variants have different intialisation and apart
12-
//! Shabal512 truncate the result.
11+
//! There is a single Shabal algorithm. All variants have different initialisation and apart
12+
//! from Shabal512 all truncate the result.
1313
//!
1414
//! # Usage
1515
//!

0 commit comments

Comments
 (0)