This commit is contained in:
HaoranYi 2022-06-03 15:50:52 -05:00 committed by GitHub
parent edebd7e495
commit 3564b5d389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ use {
pub struct Keypair(ed25519_dalek::Keypair);
impl Keypair {
/// Constructs a new, random `Keypair` using a caller-proveded RNG
/// Constructs a new, random `Keypair` using a caller-provided RNG
pub fn generate<R>(csprng: &mut R) -> Self
where
R: CryptoRng + RngCore,