Merge rust-bitcoin/rust-bitcoin#3936: Remove unnecessary `doc(hidden)`

81d4c2e067 Remove unnecessary doc(hidden) (Tobin C. Harding)

Pull request description:

  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

ACKs for top commit:
  jamillambert:
    ACK 81d4c2e067
  apoelstra:
    ACK 81d4c2e067ec7ed1d39372783261704cb1e802d8; successfully ran local tests

Tree-SHA512: 55668b9013c76364fb4ff37d47502b87c38868d0113cab639415f70d93e99221c0df08e27bf9514390cd9e365cf27baa2bf0727877a694a3b078de7edc123023
This commit is contained in:
merge-script 2025-01-21 13:24:18 +00:00
commit b94f26848e
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
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] {}