From 6857d00070378037392fd9f029ccbf78a19ef2c3 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..07b5b9d4d8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -573,9 +573,11 @@ pub mod offset; #[cfg(feature = "clock")] #[doc(inline)] pub use offset::Local; +#[doc(hidden)] +pub use offset::LocalResult; +pub use offset::MappedLocalTime; #[doc(inline)] pub use offset::{FixedOffset, Offset, TimeZone, Utc}; -pub use offset::{LocalResult, MappedLocalTime}; pub mod round; pub use round::{DurationRound, RoundingError, SubsecRound};