diff options
author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2001-02-06 12:05:58 +0000 |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2001-02-06 12:05:58 +0000 |
commit | 2fa72ea7d46fdb024d4cac1f57fb7a76dbac2233 (patch) | |
tree | d36000c1280171619b92f8ea6ea8042da05534c8 /usr.bin | |
parent | a3573c66790ca96c147917b90b60ef1c3bbcf4fb (diff) | |
download | src-2fa72ea7d46fdb024d4cac1f57fb7a76dbac2233.tar.gz src-2fa72ea7d46fdb024d4cac1f57fb7a76dbac2233.zip |
Fix typo: compatability -> compatibility.
Compatability is not an existing english word.
Notes
Notes:
svn path=/head/; revision=72093
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/brandelf/brandelf.c | 4 | ||||
-rw-r--r-- | usr.bin/doscmd/emuint.c | 4 | ||||
-rw-r--r-- | usr.bin/telnet/README | 2 | ||||
-rw-r--r-- | usr.bin/tsort/tsort.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index 3ae4bdf7d0e2..ec591e687204 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -67,7 +67,7 @@ main(int argc, char **argv) switch (ch) { case 'f': if (change) - errx(1, "f option incompatable with t option"); + errx(1, "f option incompatible with t option"); force = 1; type = atoi(optarg); if (errno == ERANGE || type < 0 || type > 255) { @@ -85,7 +85,7 @@ main(int argc, char **argv) break; case 't': if (force) - errx(1, "t option incompatable with f option"); + errx(1, "t option incompatible with f option"); change = 1; strtype = optarg; break; diff --git a/usr.bin/doscmd/emuint.c b/usr.bin/doscmd/emuint.c index 750a6f9ee06a..8e321c0cbcf2 100644 --- a/usr.bin/doscmd/emuint.c +++ b/usr.bin/doscmd/emuint.c @@ -92,14 +92,14 @@ emuint(regcontext_t *REGS) /* * XXX - * temporary backwards compatability with instbsdi.exe + * temporary backwards compatibility with instbsdi.exe * remove after a while. */ fprintf(stderr, "***\n*** WARNING - unknown emuint function\n"); fprintf(stderr, "*** Continuing; assuming instbsdi redirector.\n"); fprintf(stderr, "*** Please install the new redirector"); fprintf(stderr, " `redir.com' as soon as possible.\n"); - fprintf(stderr, "*** This compatability hack is not permanent.\n"); + fprintf(stderr, "*** This compatibility hack is not permanent.\n"); fprintf(stderr, "***\n"); PUSH(R_AX, REGS); R_BX = R_ES; diff --git a/usr.bin/telnet/README b/usr.bin/telnet/README index b23396efb536..5bec40d8848a 100644 --- a/usr.bin/telnet/README +++ b/usr.bin/telnet/README @@ -277,7 +277,7 @@ Februrary 22, 1991: source route code is automatically enabled. The NO_GETTYTAB #define has been removed; there - is a compatability routine that can be built into + is a compatibility routine that can be built into libtelnet to achive the same results. The server, telnetd, has been switched to use getopt() diff --git a/usr.bin/tsort/tsort.c b/usr.bin/tsort/tsort.c index 2f73a80d1fe9..746ea4f3f888 100644 --- a/usr.bin/tsort/tsort.c +++ b/usr.bin/tsort/tsort.c @@ -67,7 +67,7 @@ static char sccsid[] = "@(#)tsort.c 8.3 (Berkeley) 5/4/95"; * tsort [-dlq] [inputfile] * If no input file is specified, standard input is read. * - * Should be compatable with AT&T tsort HOWEVER the output is not identical + * Should be compatible with AT&T tsort HOWEVER the output is not identical * (i.e. for most graphs there is more than one sorted order, and this tsort * usually generates a different one then the AT&T tsort). Also, cycle * reporting seems to be more accurate in this version (the AT&T tsort |