mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-28 05:21:57 +00:00
subscriber: fix wrong doc_cfg
attribute (#2368)
This `doc_cfg` attribute's `cfg` part has multiple predicates without an `all`, which iis what's breaking the netlify build. I'm...kind of surprised this ever succeeded, since the cfg is malformed...
This commit is contained in:
parent
77257c1206
commit
d89ce00e26
@ -12,7 +12,7 @@ mod time_crate;
|
||||
pub use time_crate::UtcTime;
|
||||
|
||||
#[cfg(feature = "local-time")]
|
||||
#[cfg_attr(docsrs, doc(cfg(unsound_local_offset, feature = "local-time")))]
|
||||
#[cfg_attr(docsrs, doc(cfg(all(unsound_local_offset, feature = "local-time"))))]
|
||||
pub use time_crate::LocalTime;
|
||||
|
||||
#[cfg(feature = "time")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user