aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChia-Jung Chang <maluma110020036@gapp.nthu.edu.tw>2024-01-12 01:36:41 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2024-02-13 10:53:50 +0000
commit416fdc2d71656e2f0b4a16828fb0c736ae32b74a (patch)
tree9f3fd78895d184255a99181b39e2fe54dfdf4e90 /bin
parent304f52ad1ba5a9783b2eb547fed33c541e1af901 (diff)
downloadsrc-416fdc2d71656e2f0b4a16828fb0c736ae32b74a.tar.gz
src-416fdc2d71656e2f0b4a16828fb0c736ae32b74a.zip
cp(1): Grammar fix in comment
Event: Advanced UNIX programming course (Fall'23) at NTHU Pull Request: https://github.com/freebsd/freebsd-src/pull/1033
Diffstat (limited to 'bin')
-rw-r--r--bin/cp/cp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c
index 14d1cc2a3f75..4d77dfe3feed 100644
--- a/bin/cp/cp.c
+++ b/bin/cp/cp.c
@@ -340,7 +340,7 @@ copy(char *argv[], enum op type, int fts_options, struct stat *root_stat)
* noexist/dir/foo (where foo is a file in dir), which
* is the case where the target exists.
*
- * Also, check for "..". This is for correct path
+ * Also, check for "..". This is for the correct path
* concatenation for paths ending in "..", e.g.
* cp -R .. /tmp
* Paths ending in ".." are changed to ".". This is