From 4084920fbfb7df7a1ab663c60373f799b179139f Mon Sep 17 00:00:00 2001 From: jtmoon79 <815261+jtmoon79@users.noreply.github.com> Date: Sun, 17 Sep 2023 19:08:36 -0700 Subject: [PATCH] common.rs NFC docstring tweak --- src/common.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common.rs b/src/common.rs index ec1acdeb..dd09cca0 100644 --- a/src/common.rs +++ b/src/common.rs @@ -485,7 +485,8 @@ impl Eq for FileProcessingResult {} pub enum FileType { /// an unset value, the default, encountering this value is an error Unset, - /// a plain vanilla file, e.g. `file.log` + /// a plain vanilla file, e.g. `file.log`. Presumed to be a "syslog" file + /// as the term is loosely used in this project. File, /// a compressed gzipped file, e.g. `log.gz`, /// (presumed to contain one regular file; see Issue #8)