Skip to content

Commit 83d5aae

Browse files
committed
Remove stray documentation
1 parent cf17f7a commit 83d5aae

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

src/lib.rs

+5-17
Original file line numberDiff line numberDiff line change
@@ -354,11 +354,11 @@
354354
//!
355355
//! ## Limitations
356356
//!
357-
//! Only the proleptic Gregorian calendar (i.e. extended to support older dates) is supported.
358-
//! Date types are limited to about +/- 262,000 years from the common epoch.
359-
//! Time types are limited to nanosecond accuracy.
360-
//! Leap seconds can be represented, but Chrono does not fully support them.
361-
//! See [Leap Second Handling](https://docs.rs/chrono/latest/chrono/naive/struct.NaiveTime.html#leap-second-handling).
357+
//! * Only the proleptic Gregorian calendar (i.e. extended to support older dates) is supported.
358+
//! * Date types are limited to about +/- 262,000 years from the common epoch.
359+
//! * Time types are limited to nanosecond accuracy.
360+
//! * Leap seconds can be represented, but Chrono does not fully support them.
361+
//! See [Leap Second Handling](https://docs.rs/chrono/latest/chrono/naive/struct.NaiveTime.html#leap-second-handling).
362362
//!
363363
//! ## Rust version requirements
364364
//!
@@ -367,18 +367,6 @@
367367
//! The MSRV is explicitly tested in CI. It may be bumped in minor releases, but this is not done
368368
//! lightly.
369369
//!
370-
//! Chrono inherently does not support an inaccurate or partial date and time representation.
371-
//! Any operation that can be ambiguous will return `None` in such cases.
372-
//! For example, "a month later" of 2014-01-30 is not well-defined
373-
//! and consequently `Utc.ymd_opt(2014, 1, 30).unwrap().with_month(2)` returns `None`.
374-
//!
375-
//! Non ISO week handling is not yet supported.
376-
//! For now you can use the [chrono_ext](https://crates.io/crates/chrono_ext)
377-
//! crate ([sources](https://github.com/bcourtine/chrono-ext/)).
378-
//!
379-
//! Advanced time zone handling is not yet supported.
380-
//! For now you can try the [Chrono-tz](https://github.com/chronotope/chrono-tz/) crate instead.
381-
//!
382370
//! ## Relation between chrono and time 0.1
383371
//!
384372
//! Rust first had a `time` module added to `std` in its 0.7 release. It later moved to

0 commit comments

Comments
 (0)