diff options
| author | Edward Barnard | 2017-05-04 18:41:08 +0100 | 
|---|---|---|
| committer | Edward Barnard | 2017-05-04 18:41:08 +0100 | 
| commit | 42645cdf976330884b7076ff54de75d600a83944 (patch) | |
| tree | 59a59cfc2a61d525482e26d1f2df323cf1085f02 | |
| parent | b1bfd407efbb9b2d58ec26f5323121dce93fcefd (diff) | |
| download | rust-plist-42645cdf976330884b7076ff54de75d600a83944.tar.bz2 | |
Unsure whether this method should be public.
| -rw-r--r-- | src/date.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/date.rs b/src/date.rs index 5089de0..de4bd67 100644 --- a/src/date.rs +++ b/src/date.rs @@ -10,6 +10,7 @@ pub struct Date {  }  impl Date { +    #[doc(hidden)]      pub fn from_seconds_since_plist_epoch(timestamp: f64) -> Result<Date> {          // Seconds since 1/1/2001 00:00:00. | 
