From c97389596b9a18d3a9dcfbce3ade7274268483d2 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 21 Aug 2024 14:34:13 +1000 Subject: [PATCH] Remove stale docs from sha256t_hash_newtype We removed the repetition a while ago from the macro but left the docs in there - remove them. --- hashes/src/sha256t.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/hashes/src/sha256t.rs b/hashes/src/sha256t.rs index 98c4c76cb..4034b0a77 100644 --- a/hashes/src/sha256t.rs +++ b/hashes/src/sha256t.rs @@ -225,9 +225,6 @@ macro_rules! sha256t_tag { /// `#[hash_newtype(...)]`). The attributes suffer same compiler performance limitations as in /// [`hash_newtype`] macro. /// -/// The macro accepts multiple inputs so you can define multiple hash newtypes in one macro call. -/// Just make sure to enter the structs in order `Tag0`, `Hash0`, `Tag1`, `Hash1`... -/// /// [`hash_newtype`]: crate::hash_newtype #[macro_export] #[deprecated(since = "0.0.0-NEXT-RELEASE", note = "use `sha256_tag!` combined with `hash_newtype!`")]