From e08f0849dcd0908c0466fb8eb51b4b82e909d1e4 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Wed, 29 Apr 2015 02:12:17 +0900 Subject: [PATCH] well, I forgot to update the README. --- README.md | 5 +++-- src/lib.rs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3680bd6..04902db 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,9 @@ extern crate chrono; ### Duration Chrono used to have a `Duration` type, which represents the time span. -Now Rust standard library includes it as `std::time::duration::Duration` and -Chrono simply reexports it. +This is a simple reexport of +[`time::Duration`](http://doc.rust-lang.org/time/time/struct.Duration.html) type +provided by crates.io `time` crate (which originally comes from Chrono). ### Date and Time diff --git a/src/lib.rs b/src/lib.rs index 8f4a81b..1d89d76 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,8 +48,9 @@ extern crate chrono; ### Duration Chrono used to have a `Duration` type, which represents the time span. -Now Rust standard library includes it as `std::time::duration::Duration` and -Chrono simply reexports it. +This is a simple reexport of +[`time::Duration`](http://doc.rust-lang.org/time/time/struct.Duration.html) type +provided by crates.io `time` crate (which originally comes from Chrono). ### Date and Time