From 9f18f63df9f971b8fcf35e44227c0f4adbe6d63c Mon Sep 17 00:00:00 2001 From: postscriptum Date: Wed, 2 Jul 2025 13:49:14 +0300 Subject: [PATCH] update comment --- src/nex.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nex.rs b/src/nex.rs index 7e08827..7afdbb9 100644 --- a/src/nex.rs +++ b/src/nex.rs @@ -65,8 +65,8 @@ impl Nex { fs::create_dir_all(&p)?; // init storage directory for the post state file and attachments - // * the name starts with dot by the current implementation - // it is usually hidden but accessible (in servers like Nexy) + // * by the current implementation, its name starts with dot + // as usually hidden but accessible (in servers like Nexy) let mut d = PathBuf::from(&p); d.push(format!(".{}", published.format(&self.filename))); fs::create_dir_all(&d)?;