aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/date.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/date.rs b/src/date.rs
index 4729193..50a0d5d 100644
--- a/src/date.rs
+++ b/src/date.rs
@@ -4,6 +4,7 @@ use std::str::FromStr;
use {Error, Result};
+/// A UTC timestamp. Used for serialization to and from the plist date type.
#[derive(Clone, Debug, PartialEq)]
pub struct Date {
inner: DateTime<UTC>,