proto: Remove superfluous #[doc(hidden)] fuzzing

The module is already `#[cfg(fuzzing)]`, which should make it not appear
in docs.
This commit is contained in:
Phoenix Kahlo
2024-12-20 12:59:46 -06:00
committed by Dirkjan Ochtman
parent 33954582da
commit 16f83d1c8f
-1
View File
@@ -96,7 +96,6 @@ pub(crate) use std::time::{Duration, Instant, SystemTime, UNIX_EPOCH};
#[cfg(all(target_family = "wasm", target_os = "unknown"))]
pub(crate) use web_time::{Duration, Instant, SystemTime, UNIX_EPOCH};
#[doc(hidden)]
#[cfg(fuzzing)]
pub mod fuzzing {
pub use crate::connection::{Retransmits, State as ConnectionState, StreamsState};