Remove Schnorr word from keypairs

Keypairs are pair of EC points that don't have anything to do with the
signature algorithm
This commit is contained in:
sanket1729 2022-03-21 16:32:19 -07:00
parent 49905b0d44
commit aa50cc6ced
1 changed files with 3 additions and 3 deletions

View File

@ -718,7 +718,7 @@ impl KeyPair {
}
}
/// Creates a Schnorr [`KeyPair`] directly from a secret key slice.
/// Creates a [`KeyPair`] directly from a secret key slice.
///
/// # Errors
///
@ -743,7 +743,7 @@ impl KeyPair {
}
}
/// Creates a Schnorr [`KeyPair`] directly from a secret key string.
/// Creates a [`KeyPair`] directly from a secret key string.
///
/// # Errors
///
@ -759,7 +759,7 @@ impl KeyPair {
}
}
/// Creates a Schnorr [`KeyPair`] directly from a secret key string and the global [`SECP256K1`] context.
/// Creates a [`KeyPair`] directly from a secret key string and the global [`SECP256K1`] context.
///
/// # Errors
///