fix documentation referencing macro var

This commit is contained in:
Riccardo Casatta 2021-06-25 09:56:40 +02:00
parent abff973e83
commit 8f27579c7f
No known key found for this signature in database
GPG Key ID: FD986A969E450397
1 changed files with 7 additions and 1 deletions

View File

@ -47,7 +47,13 @@ const MIDSTATE_TAPSIGHASH: [u8; 32] = [
/// Internal macro to speficy the different taproot tagged hashes.
macro_rules! sha256t_hash_newtype {
($newtype:ident, $tag:ident, $midstate:ident, $midstate_len:expr, $docs:meta, $reverse: expr) => {
/// The tag used for [$newtype].
sha256t_hash_newtype!($newtype, $tag, $midstate, $midstate_len, $docs, $reverse, stringify!($newtype));
};
($newtype:ident, $tag:ident, $midstate:ident, $midstate_len:expr, $docs:meta, $reverse: expr, $sname:expr) => {
#[doc = "The tag used for ["]
#[doc = $sname]
#[doc = "]"]
pub struct $tag;
impl sha256t::Tag for $tag {