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:
Eliza Weisman 2022-11-04 11:37:41 -07:00
parent 77257c1206
commit d89ce00e26

View File

@ -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")]