From fe99056b24034f59516b4da67cab756a05895e8e Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 25 Sep 2024 12:01:23 -0400 Subject: Re-wrap comments. --- src/clock.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/clock.rs') diff --git a/src/clock.rs b/src/clock.rs index 81ecede..4774613 100644 --- a/src/clock.rs +++ b/src/clock.rs @@ -8,10 +8,10 @@ use chrono::Utc; pub type DateTime = chrono::DateTime; -// Extractor that provides the "current time" for a request. This time is calculated -// once per request, even if the extractor is used in multiple places. This requires -// the [middleware] function to be installed with [axum::middleware::from_fn] around -// the current route. +// Extractor that provides the "current time" for a request. This time is +// calculated once per request, even if the extractor is used in multiple +// places. This requires the [middleware] function to be installed with +// [axum::middleware::from_fn] around the current route. #[derive(Clone)] pub struct RequestedAt(pub DateTime); -- cgit v1.2.3