From 7829d978e6ea94817bdf72c56aa72425a37deb68 Mon Sep 17 00:00:00 2001 From: Jan Starke Date: Thu, 13 Jun 2024 11:25:02 +0200 Subject: [PATCH] use shorter comment for old-csv --- src/bin/mactime2/application.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/bin/mactime2/application.rs b/src/bin/mactime2/application.rs index e2ffb8d..8fb6cb2 100644 --- a/src/bin/mactime2/application.rs +++ b/src/bin/mactime2/application.rs @@ -41,11 +41,7 @@ pub(crate) enum OutputFormat { #[strum(serialize = "elastic")] Elastic, - /// Use the old CSV format that was used by legacy mactime. - /// Keep in mind that in this format, fields which contain commas will - /// not be wrapped by quotes, as RFC4180 requires it. So, this format - /// is not RFC4180-compliant, which means that you might not be able - /// to use the output together with csv processing tools. + /// Use the old (non RFC compliant) CSV format that was used by legacy mactime. #[strum(serialize = "old-csv")] OldCsv, }