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:
parent
05c28cf31d
commit
81d4c2e067
|
@ -303,7 +303,6 @@ impl<const N: usize> IsByteArray for [u8; N] {
|
||||||
}
|
}
|
||||||
|
|
||||||
mod sealed {
|
mod sealed {
|
||||||
#[doc(hidden)]
|
|
||||||
pub trait IsByteArray {}
|
pub trait IsByteArray {}
|
||||||
|
|
||||||
impl<const N: usize> IsByteArray for [u8; N] {}
|
impl<const N: usize> IsByteArray for [u8; N] {}
|
||||||
|
|
Loading…
Reference in New Issue