diff --git a/bitcoin/src/crypto/schnorr.rs b/bitcoin/src/crypto/schnorr.rs index 5cf9cec8..3f1630c6 100644 --- a/bitcoin/src/crypto/schnorr.rs +++ b/bitcoin/src/crypto/schnorr.rs @@ -48,7 +48,7 @@ pub type UntweakedKeyPair = KeyPair; /// # Examples /// ``` /// # #[cfg(feature = "rand-std")] { -/// # use bitcoin::schnorr::{TweakedKeyPair, TweakedPublicKey}; +/// # use bitcoin::schnorr::{KeyPair, TweakedKeyPair, TweakedPublicKey}; /// # use bitcoin::secp256k1::{rand, Secp256k1}; /// # let secp = Secp256k1::new(); /// # let keypair = TweakedKeyPair::dangerous_assume_tweaked(KeyPair::new(&secp, &mut rand::thread_rng()));