From 81d4c2e067ec7ed1d39372783261704cb1e802d8 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 20 Jan 2025 17:22:08 +1100 Subject: [PATCH] Remove unnecessary doc(hidden) This trait is private and is meant just for sealing. It already will not show up in public docs and cannot be used by downstream users. Resolve: #3912 --- hashes/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/hashes/src/lib.rs b/hashes/src/lib.rs index 920ce9973..9f0067aaf 100644 --- a/hashes/src/lib.rs +++ b/hashes/src/lib.rs @@ -303,7 +303,6 @@ impl IsByteArray for [u8; N] { } mod sealed { - #[doc(hidden)] pub trait IsByteArray {} impl IsByteArray for [u8; N] {}