The branch main has been updated by lwhsu: URL: https://cgit.FreeBSD.org/src/commit/?id=49eeca743b70d13883ed1db73b6e04fbab791681
commit 49eeca743b70d13883ed1db73b6e04fbab791681 Author: LO WEN-CHIEN <[email protected]> AuthorDate: 2024-01-07 13:14:12 +0000 Commit: Li-Wen Hsu <[email protected]> CommitDate: 2024-02-13 07:33:16 +0000 stat(1): Fix grammar error in stat.c Event: Advanced UNIX Programming Course (Fall’23) at NTHU Pull Request: https://github.com/freebsd/freebsd-src/pull/1014 --- usr.bin/stat/stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/stat/stat.c b/usr.bin/stat/stat.c index 720069db3195..1fd8288728c1 100644 --- a/usr.bin/stat/stat.c +++ b/usr.bin/stat/stat.c @@ -1022,7 +1022,7 @@ format1(const struct stat *st, (void)strcat(lfmt, tmp); /* - * For precision of less that nine digits, trim off the + * For precision of less than nine digits, trim off the * less significant figures. */ for (; prec < 9; prec++)
