From 8b62e50c54c61ecd2057000bdc00bc2a9f9d1377 Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Mon, 27 Aug 2018 10:16:14 +0200 Subject: [PATCH] Add missing RFC3339 URL to fix rustdoc --- src/fmt.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fmt.rs b/src/fmt.rs index d90210fa..72198430 100644 --- a/src/fmt.rs +++ b/src/fmt.rs @@ -150,6 +150,8 @@ pub struct StyledValue<'a, T> { pub struct Timestamp(SystemTime); /// An [RFC3339] formatted timestamp with nanos +/// +/// [RFC3339]: https://www.ietf.org/rfc/rfc3339.txt #[derive(Debug)] pub struct PreciseTimestamp(SystemTime);