From 6d9f91874b409ac3cdfc6bbca7dc17e7de2d2e7b Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Wed, 23 Mar 2016 09:50:21 +0100 Subject: [PATCH] Clarify timezone conversion in docs --- src/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b145940..30079de 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,9 +49,10 @@ //! //! Chrono provides a `DateTime` type for the combined date and time. //! -//! `DateTime`, among others, is timezone-aware and -//! must be constructed from the `TimeZone` object. -//! `DateTime`s with different time zones do not mix, but can be converted to each other. +//! `DateTime`, among others, is timezone-aware and must be constructed from +//! the `TimeZone` object. +//! `DateTime`s with different time zones do not mix, but can be converted to +//! each other using the `DateTime::with_timezone` method. //! //! You can get the current date and time in the UTC time zone (`UTC::now()`) //! or in the local time zone (`Local::now()`).