From 603e2ce9b7a6964aa690e5a3aa741159a516784f Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Wed, 27 Mar 2024 07:32:29 +0100 Subject: [PATCH] Hide re-export of `LocalResult` in docs --- src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 80a6e3c6af..1ec8d72750 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -575,7 +575,9 @@ pub mod offset; pub use offset::Local; #[doc(inline)] pub use offset::{FixedOffset, Offset, TimeZone, Utc}; -pub use offset::{LocalResult, MappedLocalTime}; +#[doc(hidden)] +pub use offset::LocalResult; +pub use offset::MappedLocalTime; pub mod round; pub use round::{DurationRound, RoundingError, SubsecRound};