Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doctest warnings, remove mention of deprecated methods from main doc #1081

Merged
merged 8 commits into from
May 26, 2023
Prev Previous commit
Deny warnings in doctests
  • Loading branch information
pitdicker committed May 24, 2023
commit 02c5069accb862cb40687e87bd764d752787e427
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 382,7 @@
//! Advanced time zone handling is not yet supported.
//! For now you can try the [Chrono-tz](https://github.com/chronotope/chrono-tz/) crate instead.
#![doc(html_root_url = "https://docs.rs/chrono/latest/")]
#![doc(html_root_url = "https://docs.rs/chrono/latest/", test(attr(deny(warnings))))]
pitdicker marked this conversation as resolved.
Show resolved Hide resolved
#![cfg_attr(feature = "bench", feature(test))] // lib stability features as per RFC #507
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
Expand Down