git: b1d0cf28ff5b - main - ar(1): Fix grammar error in write.c

From: Li-Wen Hsu <lwhsu_at_FreeBSD.org>
Date: Tue, 13 Feb 2024 08:25:28 UTC
The branch main has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/src/commit/?id=b1d0cf28ff5b925eb65d6363e32da9cd0d3c3857

commit b1d0cf28ff5b925eb65d6363e32da9cd0d3c3857
Author:     LO WEN-CHIEN <s111062113@m111.nthu.edu.tw>
AuthorDate: 2024-01-07 13:01:56 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2024-02-13 07:31:59 +0000

    ar(1): Fix grammar error in write.c
    
    Event:          Advanced UNIX Programming Course (Fall’23) at NTHU
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/1013
---
 usr.bin/ar/write.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/ar/write.c b/usr.bin/ar/write.c
index 1279a1ca7cb8..a630e81480ee 100644
--- a/usr.bin/ar/write.c
+++ b/usr.bin/ar/write.c
@@ -121,7 +121,7 @@ create_obj_from_file(struct bsdar *bsdar, const char *name, time_t mtime)
 
 	/*
 	 * When option '-u' is specified and member is not newer than the
-	 * existing one, the replace will not happen. While if mtime == 0,
+	 * existing one, the replacement will not happen. While if mtime == 0,
 	 * which indicates that this is to "replace a none exist member",
 	 * the replace will proceed regardless of '-u'.
 	 */