Skip to content

Commit 47411ce

Browse files
committed
Fix typo in documentation
Docs reference a function name but there is a typo. 'grund' -> 'grind'.
1 parent 045896d commit 47411ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ecdsa/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ impl<C: Signing> Secp256k1<C> {
381381

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

393393
/// Constructs a signature for `msg` using the secret key `sk`, RFC6979 nonce
394394
/// and "grinds" the nonce by passing extra entropy if necessary to produce
395-
/// a signature that is less than 71 - bytes_to_grund bytes. The number
395+
/// a signature that is less than 71 - `bytes_to_grind` bytes. The number
396396
/// of signing operation performed by this function is exponential in the
397397
/// number of bytes grinded.
398398
/// Requires a signing capable context.

0 commit comments

Comments
 (0)