Skip to content

Commit b707752

Browse files
authored
Fix a few typos (#341)
1 parent da9085d commit b707752

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scrypt/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
116116
## 0.3.1 (2020-07-03)
117117
### Fixed
118118
- Enable `alloc` feature for `base64`. ([#38])
119-
- Remove superflous `main()` in documentation ([#40])
119+
- Remove superfluous `main()` in documentation ([#40])
120120

121121
[#38]: https://github.com/RustCrypto/password-hashing/pull/38
122122
[#40]: https://github.com/RustCrypto/password-hashing/pull/40

scrypt/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub use crate::simple::{Scrypt, ALG_ID};
8383
/// **WARNING: Make sure to compare this value in constant time!**
8484
///
8585
/// # Return
86-
/// `Ok(())` if calculation is succesfull and `Err(InvalidOutputLen)` if
86+
/// `Ok(())` if calculation is successful and `Err(InvalidOutputLen)` if
8787
/// `output` does not satisfy the following condition:
8888
/// `output.len() > 0 && output.len() <= (2^32 - 1) * 32`.
8989
pub fn scrypt(

0 commit comments

Comments
 (0)