From ff836ed3885bfa0d12fde7c3832ace856f933a95 Mon Sep 17 00:00:00 2001 From: Jose Celano Date: Tue, 10 Sep 2024 09:30:41 +0100 Subject: [PATCH] fix: clippy error --- packages/clock/src/conv/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/clock/src/conv/mod.rs b/packages/clock/src/conv/mod.rs index f70950c38..894083061 100644 --- a/packages/clock/src/conv/mod.rs +++ b/packages/clock/src/conv/mod.rs @@ -4,6 +4,7 @@ use chrono::{DateTime, Utc}; use torrust_tracker_primitives::DurationSinceUnixEpoch; /// It converts a string in ISO 8601 format to a timestamp. +/// /// For example, the string `1970-01-01T00:00:00.000Z` which is the Unix Epoch /// will be converted to a timestamp of 0: `DurationSinceUnixEpoch::ZERO`. ///