aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFu-Cheng Wang <s111062755@m111.nthu.edu.tw>2024-01-04 06:15:09 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2024-02-13 06:13:08 +0000
commit3cddabf0bd5fa9532fe2a1653b7b30f0ffe40401 (patch)
tree835eb8cf503bcc366518364080189f2b8be70371 /bin
parentf4e0aec989f990a2792c829966e4af07f7880d81 (diff)
downloadsrc-3cddabf0bd5fa9532fe2a1653b7b30f0ffe40401.tar.gz
src-3cddabf0bd5fa9532fe2a1653b7b30f0ffe40401.zip
sh(1): Grammar fix in jobs.c
Event: Advanced UNIX Programming Course (Fall’23) at NTHU. Pull Request: https://github.com/freebsd/freebsd-src/pull/992
Diffstat (limited to 'bin')
-rw-r--r--bin/sh/jobs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c
index 90b5892f72b7..1328ae50edef 100644
--- a/bin/sh/jobs.c
+++ b/bin/sh/jobs.c
@@ -93,7 +93,7 @@ struct job {
short nprocs; /* number of processes */
pid_t pgrp; /* process group of this job */
char state; /* true if job is finished */
- char used; /* true if this entry is in used */
+ char used; /* true if this entry is in use */
char changed; /* true if status has changed */
char foreground; /* true if running in the foreground */
char remembered; /* true if $! referenced */