diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-01 19:31:10 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-01 19:31:10 +0000 |
commit | 4e8b2dca7757ce8356c3bb617ad0fb467c9db487 (patch) | |
tree | e8fe388d5acdb4f6d04fbd8fe45b5bc78788c13b | |
parent | b8e2e0208f9a519e467cdfa31b7b3413c0d6eca2 (diff) | |
download | coreutils-4e8b2dca7757ce8356c3bb617ad0fb467c9db487.tar.xz |
Clarify comment about size bounds.
-rw-r--r-- | src/sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c index b34d6f7d2..7b736c152 100644 --- a/src/sort.c +++ b/src/sort.c @@ -704,8 +704,8 @@ default_sort_size (void) by FPS and FILES, which are alternate names of the same files. NFILES gives the number of input files; NFPS may be less. Assume that each input line requires LINE_BYTES extra bytes' worth of line - information. Do not exceed a bound on the size: if the bound is - not specified by the user, use a default. */ + information. Do not exceed the size bound specified by the user + (or a default size bound, if the user does not specify one). */ static size_t sort_buffer_size (FILE *const *fps, size_t nfps, |