From 8d797fcbcbe3c31aee0ac3cd3fb06a6bb3ce9d0f Mon Sep 17 00:00:00 2001 From: Ben Schofield Date: Mon, 5 Jun 2023 08:00:07 -0700 Subject: [PATCH] typo fix --- src/parse_datetime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse_datetime.rs b/src/parse_datetime.rs index eae6ab8..d3952a8 100644 --- a/src/parse_datetime.rs +++ b/src/parse_datetime.rs @@ -6,7 +6,7 @@ use chrono::{DateTime, FixedOffset, Local, LocalResult, NaiveDateTime, TimeZone} use crate::ParseDurationError; /// Formats that parse input can take. -/// Taken from `touch` coreutil +/// Taken from `touch` coreutils mod format { pub(crate) const ISO_8601: &str = "%Y-%m-%d"; pub(crate) const ISO_8601_NO_SEP: &str = "%Y%m%d";