From 866cf8c7324990a2c84c0eb911827449bb3932be Mon Sep 17 00:00:00 2001 From: Thomas DuBuisson Date: Wed, 29 Mar 2023 12:14:58 -0700 Subject: [PATCH] Fix rustdoc link --- src/ecdsa/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ecdsa/mod.rs b/src/ecdsa/mod.rs index 26e4092..eb9c668 100644 --- a/src/ecdsa/mod.rs +++ b/src/ecdsa/mod.rs @@ -190,7 +190,7 @@ impl Signature { } /// Verifies an ECDSA signature for `msg` using `pk` and the global [`SECP256K1`] context. - /// The signature must be normalized or verification will fail (see [`normalize_s`]). + /// The signature must be normalized or verification will fail (see [`Signature::normalize_s`]). #[inline] #[cfg(feature = "global-context")] #[cfg_attr(docsrs, doc(cfg(feature = "global-context")))]