Fix typo in documentation

Docs reference a function name but there is a typo.

'grund' -> 'grind'.
This commit is contained in:
Tobin Harding 2022-01-19 15:22:37 +11:00
parent 045896dae7
commit 47411ce73d
1 changed files with 2 additions and 2 deletions

View File

@ -381,7 +381,7 @@ impl<C: Signing> Secp256k1<C> {
/// Constructs a signature for `msg` using the secret key `sk`, RFC6979 nonce /// Constructs a signature for `msg` using the secret key `sk`, RFC6979 nonce
/// and "grinds" the nonce by passing extra entropy if necessary to produce /// and "grinds" the nonce by passing extra entropy if necessary to produce
/// a signature that is less than 71 - bytes_to_grund bytes. The number /// a signature that is less than 71 - `bytes_to_grind` bytes. The number
/// of signing operation performed by this function is exponential in the /// of signing operation performed by this function is exponential in the
/// number of bytes grinded. /// number of bytes grinded.
/// Requires a signing capable context. /// Requires a signing capable context.
@ -392,7 +392,7 @@ impl<C: Signing> Secp256k1<C> {
/// Constructs a signature for `msg` using the secret key `sk`, RFC6979 nonce /// Constructs a signature for `msg` using the secret key `sk`, RFC6979 nonce
/// and "grinds" the nonce by passing extra entropy if necessary to produce /// and "grinds" the nonce by passing extra entropy if necessary to produce
/// a signature that is less than 71 - bytes_to_grund bytes. The number /// a signature that is less than 71 - `bytes_to_grind` bytes. The number
/// of signing operation performed by this function is exponential in the /// of signing operation performed by this function is exponential in the
/// number of bytes grinded. /// number of bytes grinded.
/// Requires a signing capable context. /// Requires a signing capable context.