diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-08-11 13:05:30 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-08-11 13:05:30 +0000 |
commit | b2bb39b1ebc96a74fcafa5329db783dcc556511b (patch) | |
tree | 359b8f6a3bb21f89fd8f77d83575d82b0f750df2 /usr.sbin | |
parent | 544b3fb6045b998a316e58f4dc0ad30a05280df1 (diff) | |
download | FreeBSD-src-b2bb39b1ebc96a74fcafa5329db783dcc556511b.zip FreeBSD-src-b2bb39b1ebc96a74fcafa5329db783dcc556511b.tar.gz |
Fix typos; each file has at least one s/seperat/separat/
(I skipped those in contrib/, gnu/ and crypto/)
While I was at it, fixed a lot more found by ispell that I
could identify with certainty to be errors. All of these
were in comments or text, not in actual code.
Suggested by: bde
MFC after: 3 days
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/lpr/common_source/matchjobs.c | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/lib/version.c | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/lpr/common_source/matchjobs.c b/usr.sbin/lpr/common_source/matchjobs.c index 568aab3..9af0fd1 100644 --- a/usr.sbin/lpr/common_source/matchjobs.c +++ b/usr.sbin/lpr/common_source/matchjobs.c @@ -327,7 +327,7 @@ parse_jobspec(char *jobstr, struct jobspec_hdr *js_hdr) * If there is anything left in the numstr, and if the * original string did not include a userid or a hostname, * then this might be the ancient form of '\d+hostname' - * (with no seperator between jobnum and hostname). Accept + * (with no separator between jobnum and hostname). Accept * that for backwards compatibility, but otherwise any * remaining characters mean a user-error. Note that the * ancient form accepted only a single number, but this diff --git a/usr.sbin/pkg_install/lib/version.c b/usr.sbin/pkg_install/lib/version.c index 8241961..cdc3039 100644 --- a/usr.sbin/pkg_install/lib/version.c +++ b/usr.sbin/pkg_install/lib/version.c @@ -1,5 +1,5 @@ /* - * FreeBSD install - a package for the installation and maintainance + * FreeBSD install - a package for the installation and maintenance * of non-core utilities. * * Redistribution and use in source and binary forms, with or without @@ -29,7 +29,7 @@ __FBSDID("$FreeBSD$"); * Following is the PLIST_FMT_VER history: * 1.0 - Initial revision; * 1.1 - When recording/checking checksum of symlink use hash of readlink() - * value insted of the hash of an object this links points to. + * value instead of the hash of an object this links points to. * */ int @@ -82,17 +82,17 @@ version_of(const char *pkgname, int *epoch, int *revision) /* * version_cmp(pkg1, pkg2) returns -1, 0 or 1 depending on if the version * components of pkg1 is less than, equal to or greater than pkg2. No - * comparision of the basenames is done. + * comparison of the basenames is done. * - * The port verison is defined by: + * The port version is defined by: * ${PORTVERSION}[_${PORTREVISION}][,${PORTEPOCH}] - * ${PORTEPOCH} supercedes ${PORTVERSION} supercedes ${PORTREVISION}. + * ${PORTEPOCH} supersedes ${PORTVERSION} supersedes ${PORTREVISION}. * See the commit log for revision 1.349 of ports/Mk/bsd.port.mk * for more information. * * The epoch and revision are defined to be a single number, while the rest * of the version should conform to the porting guidelines. It can contain - * multiple components, seperated by a period, including letters. + * multiple components, separated by a period, including letters. * * The tests below allow for significantly more latitude in the version * numbers than is allowed in the guidelines. No point in wasting user's |