diff options
author | Jim Meyering <jim@meyering.net> | 2004-06-06 19:18:49 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-06-06 19:18:49 +0000 |
commit | 9011b529175e85d95fe2b597f77bce714fc8e85c (patch) | |
tree | 2e1b1a1d3140f46bb44e42ca5be81f8b923bb323 | |
parent | 62d61c7c12df1a0bc91e95b3278ee424050937f3 (diff) | |
download | coreutils-9011b529175e85d95fe2b597f77bce714fc8e85c.tar.xz |
fix typo in comment
-rw-r--r-- | src/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ enum { N_CHARS = UCHAR_MAX + 1 }; static inline unsigned char uchar (char ch) { return ch; } /* An unsigned integer type big enough to hold a repeat count or an - unsigned character. POSIX require support for repeat counts as + unsigned character. POSIX requires support for repeat counts as high as 2**31 - 1. Since repeat counts might need to expand to match the length of an argument string, we need at least size_t to avoid arbitrary internal limits. It doesn't cost much to use |