mm(1): fixes comment about flags -a & -t

This commit is contained in:
Emma Tebibyte 2024-07-14 00:33:37 -06:00
parent 3b76254599
commit 37804aab6b
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -98,7 +98,7 @@ fn main() -> ExitCode {
}
let options = File::options()
/* truncate if -t is specified and append if -a is specified */
/* dont truncate if -t is specified, append if -a is specified */
.truncate(t)
.append(a)
/* enable the ability to create and write to files */