Skip to content

Commit da48d40

Browse files
authored
Fix "environmental variable" to "environment variable" (#524)
1 parent 114d080 commit da48d40

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

aes/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
//! - `aes_compact`: reduce code size at the cost of slower performance
107107
//! (affects only software backend).
108108
//!
109-
//! It can be enabled using `RUSTFLAGS` environmental variable
109+
//! It can be enabled using `RUSTFLAGS` environment variable
110110
//! (e.g. `RUSTFLAGS="--cfg aes_compact"`) or by modifying `.cargo/config`.
111111
//!
112112
//! [AES]: https://en.wikipedia.org/wiki/Advanced_Encryption_Standard

kuznyechik/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! - `soft`: use software backend with big fused tables.
1717
//! - `compact_soft`: use software backend with small tables and slower performance.
1818
//!
19-
//! The flag can be enabled using `RUSTFLAGS` environmental variable
19+
//! The flag can be enabled using `RUSTFLAGS` environment variable
2020
//! (e.g. `RUSTFLAGS='--cfg kuznyechik_backend="soft"'`) or by modifying
2121
//! `.cargo/config`.
2222
//!

serpent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can modify crate using the following configuration flags:
3030

3131
- `serpent_no_unroll`: do not unroll rounds loop. Reduces binary size at the cost of slightly lower performance.
3232

33-
The flag can be enabled using RUSTFLAGS environmental variable (e.g. RUSTFLAGS="--cfg serpent_no_unroll") or by modifying .cargo/config.
33+
The flag can be enabled using RUSTFLAGS environment variable (e.g. RUSTFLAGS="--cfg serpent_no_unroll") or by modifying .cargo/config.
3434

3535
## License
3636

0 commit comments

Comments
 (0)