diff options
author | joe <joe@FreeBSD.org> | 2000-08-12 23:53:11 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2000-08-12 23:53:11 +0000 |
commit | 880b607621269a90e4cec082280fc6088d3f20a6 (patch) | |
tree | 75c2d47d1ab7ca2baf02806fdadeaa1ab07b9db3 /bin | |
parent | 44404a7ede17cae61843659e23fd6f1efd3f6f4f (diff) | |
download | FreeBSD-src-880b607621269a90e4cec082280fc6088d3f20a6.zip FreeBSD-src-880b607621269a90e4cec082280fc6088d3f20a6.tar.gz |
Correct spelling: depricated -> deprecated.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ls/ls.1 | 2 | ||||
-rw-r--r-- | bin/ls/ls.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/ls.1 b/bin/ls/ls.1 index 37ed1df..7f48f12 100644 --- a/bin/ls/ls.1 +++ b/bin/ls/ls.1 @@ -91,7 +91,7 @@ a percent sign (%) after each whiteout, and a vertical bar (|) after each that is a .Tn FIFO . .It Fl G -This flag has been depricated. Please use the +This flag has been deprecated. Please use the .Ev CLICOLOR environment variable instead. .It Fl H Symbolic links on the command line are followed. This option is assumed if diff --git a/bin/ls/ls.c b/bin/ls/ls.c index 87cea23..afed064 100644 --- a/bin/ls/ls.c +++ b/bin/ls/ls.c @@ -203,7 +203,7 @@ main(argc, argv) break; case 'G': #ifdef COLORLS - (void)fprintf(stderr, "The -G flag is depricated, please define CLICOLOR instead.\n"); + (void)fprintf(stderr, "The -G flag is deprecated, please define CLICOLOR instead.\n"); setenv("CLICOLOR", "", 1); #else (void)fprintf(stderr, "Color support not compiled in.\n"); |