diff options
author | bde <bde@FreeBSD.org> | 1998-11-29 11:34:30 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-11-29 11:34:30 +0000 |
commit | 9d5546fa95de506f2e44cfa115c9b1bd3d3bad6f (patch) | |
tree | eee2c6fea2c42c901c7c952b1243efb6dc2cddac /usr.bin/find | |
parent | 767b0be6c5d4c0f7aafac5453d0891a7fe3fa06e (diff) | |
download | FreeBSD-src-9d5546fa95de506f2e44cfa115c9b1bd3d3bad6f.zip FreeBSD-src-9d5546fa95de506f2e44cfa115c9b1bd3d3bad6f.tar.gz |
Fixed my English fixes.
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/find.c | 3 | ||||
-rw-r--r-- | usr.bin/find/main.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c index 47a4e9f..56e2340 100644 --- a/usr.bin/find/find.c +++ b/usr.bin/find/find.c @@ -55,7 +55,8 @@ static int find_compare __P((const FTSENT **s1, const FTSENT **s2)); /* * find_compare -- * tell fts_open() how to order the traversal of the hierarchy. - * This variant gives lexicographical order in each directory. + * This variant gives lexicographical order, i.e., alphabetical + * order within each directory. */ static int find_compare(s1, s2) diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c index 4ea3f36..21770fb 100644 --- a/usr.bin/find/main.c +++ b/usr.bin/find/main.c @@ -65,7 +65,7 @@ int ftsoptions; /* options for the ftsopen(3) call */ int isdeprecated; /* using deprecated syntax */ int isdepth; /* do directories on post-order visit */ int isoutput; /* user specified output operator */ -int issort; /* do directories in lexicographical order */ +int issort; /* do hierarchies in lexicographical order */ int isxargs; /* don't permit xargs delimiting chars */ static void usage __P((void)); |