Skip to content

Commit

Permalink
Fix a minor typo in signing.rs (#649)
Browse files Browse the repository at this point in the history
an -> a
  • Loading branch information
koba-e964 committed Apr 14, 2024
1 parent cc3421a commit 1efe6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ed25519-dalek/src/signing.rs
Expand Up @@ -131,7 +131,7 @@ impl SigningKey {
/// # Returns
///
/// A `Result` whose okay value is an EdDSA [`SigningKey`] or whose error value
/// is an `SignatureError` describing the error that occurred.
/// is a `SignatureError` describing the error that occurred.
#[inline]
pub fn from_keypair_bytes(bytes: &[u8; 64]) -> Result<SigningKey, SignatureError> {
let (secret_key, verifying_key) = bytes.split_at(SECRET_KEY_LENGTH);
Expand Down

0 comments on commit 1efe6a9

Please sign in to comment.