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)?;