From 37804aab6b799db8b60ba4e9f0853cdc7b18f9a6 Mon Sep 17 00:00:00 2001 From: emma Date: Sun, 14 Jul 2024 00:33:37 -0600 Subject: [PATCH] mm(1): fixes comment about flags -a & -t --- src/mm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mm.rs b/src/mm.rs index 9c1151c..9a1590f 100644 --- a/src/mm.rs +++ b/src/mm.rs @@ -98,7 +98,7 @@ fn main() -> ExitCode { } let options = File::options() - /* truncate if -t is specified and append if -a is specified */ + /* don’t truncate if -t is specified, append if -a is specified */ .truncate(t) .append(a) /* enable the ability to create and write to files */