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
This commit is contained in:
Tobin C. Harding 2025-01-20 17:22:08 +11:00
parent 05c28cf31d
commit 81d4c2e067
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 1 deletions

View File

@ -303,7 +303,6 @@ impl<const N: usize> IsByteArray for [u8; N] {
}
mod sealed {
#[doc(hidden)]
pub trait IsByteArray {}
impl<const N: usize> IsByteArray for [u8; N] {}