diff options
author | eadler <eadler@FreeBSD.org> | 2011-11-11 22:27:09 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2011-11-11 22:27:09 +0000 |
commit | 8710aaed7e5126453e85553f99198552d4e65810 (patch) | |
tree | b0aaf816e7ac148fc29da56a9954b205e2ec5de2 | |
parent | 38110cede235ec634a3022a75f845940bd25a1ea (diff) | |
download | FreeBSD-src-8710aaed7e5126453e85553f99198552d4e65810.zip FreeBSD-src-8710aaed7e5126453e85553f99198552d4e65810.tar.gz |
- add a missing "be" and "in"
- fix other errors introduced when committing r226436
- add 'function' to a sentence where it makes sense
Submitted by: delphij
Submitted by: dougb
Submitted by: jhb
Approved by: dougb
Approved by: jhb
-rw-r--r-- | secure/usr.bin/openssl/man/ca.1 | 2 | ||||
-rw-r--r-- | sys/dev/isp/DriverManual.txt | 2 | ||||
-rw-r--r-- | sys/netinet/ipfw/dummynet.txt | 2 | ||||
-rw-r--r-- | usr.bin/compress/doc/NOTES | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/lib/version.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/secure/usr.bin/openssl/man/ca.1 b/secure/usr.bin/openssl/man/ca.1 index aecc18c..15095cf 100644 --- a/secure/usr.bin/openssl/man/ca.1 +++ b/secure/usr.bin/openssl/man/ca.1 @@ -205,7 +205,7 @@ section for information on the required format. .IP "\fB\-infiles\fR" 4 .IX Item "-infiles" if present this should be the last option, all subsequent arguments -are assumed to the names of files containing certificate requests. +are assumed to be the names of files containing certificate requests. .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" the output file to output certificates to. The default is standard diff --git a/sys/dev/isp/DriverManual.txt b/sys/dev/isp/DriverManual.txt index 0ed5a1b..3d2f0fc 100644 --- a/sys/dev/isp/DriverManual.txt +++ b/sys/dev/isp/DriverManual.txt @@ -327,7 +327,7 @@ here in clarifying some of this. A succesful execution of isp_init will lead to the driver 'registering' itself with this platform's SCSI subsystem. One assumed action for this -is the registry of a function the SCSI subsystem for this platform +is the registry of a function that the SCSI subsystem for this platform will call when it has a SCSI command to run. The platform specific module function that receives this will do whatever diff --git a/sys/netinet/ipfw/dummynet.txt b/sys/netinet/ipfw/dummynet.txt index 3a1efde..e4f3075 100644 --- a/sys/netinet/ipfw/dummynet.txt +++ b/sys/netinet/ipfw/dummynet.txt @@ -325,7 +325,7 @@ we do the following: dummynet_task() =============== -The dummynet_task() is the main dummynet processing function and is +The dummynet_task() function is the main dummynet processing function and is called every tick. This function first calculate the new current time, then it checks if it is the time to wake up object from the system_heap comparing the current time and the key of the heap. Two types of object (really the diff --git a/usr.bin/compress/doc/NOTES b/usr.bin/compress/doc/NOTES index 29ca311..ef3931a 100644 --- a/usr.bin/compress/doc/NOTES +++ b/usr.bin/compress/doc/NOTES @@ -51,7 +51,7 @@ comprehensive survey of an area which will remain murky for some time. Until the dust clears, how you approach ideas which are patented depends on how paranoid you are of a legal onslaught. Arbitrary? Yes. But -the patent bar the CCPA (Court of Customs and Patent Appeals) +the patent bar of the CCPA (Court of Customs and Patent Appeals) thanks you for any uncertainty as they, at least, stand to gain from any trouble. diff --git a/usr.sbin/pkg_install/lib/version.c b/usr.sbin/pkg_install/lib/version.c index 0852ba1..c25d272 100644 --- a/usr.sbin/pkg_install/lib/version.c +++ b/usr.sbin/pkg_install/lib/version.c @@ -66,7 +66,7 @@ split_version(const char *pkgname, const char **endname, unsigned long *epoch, u if (pkgname == NULL) errx(2, "%s: Passed NULL pkgname.", __func__); - /* Look for the last '-' the pkgname */ + /* Look for the last '-' in the pkgname */ ch = strrchr(pkgname, '-'); /* Cheat if we are just passed a version, not a valid package name */ versionstr = ch ? ch + 1 : pkgname; |