diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2021-07-28 12:22:11 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2021-07-28 12:30:12 -0700 |
commit | d60b2922ffb30d15e81b0019025b8e62af070a6e (patch) | |
tree | 094ede3f79355a438e50ca5d455206de7d1e84f4 /src/factor.c | |
parent | 1625916a1ba4148b4127b7742337bde1606d4b80 (diff) | |
download | coreutils-d60b2922ffb30d15e81b0019025b8e62af070a6e.tar.gz |
doc: modernize usage of “disk” and “core”
In documentation and comments, don’t assume that secondary storage
devices are disk devices. Similarly, don’t assume that main memory
uses magnetic cores, which became obsolete in the 1970s.
* src/du.c (usage):
* src/ls.c (usage):
* src/shred.c (usage): Reword to avoid “disk” in usage messages.
Diffstat (limited to 'src/factor.c')
-rw-r--r-- | src/factor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/factor.c b/src/factor.c index 62a269fcf..c2bf05526 100644 --- a/src/factor.c +++ b/src/factor.c @@ -65,7 +65,8 @@ from a prime. We might instead compute the inverse on-the-fly. * Tune trial division table size (not forgetting that this is a standalone - program where the table will be read from disk for each invocation). + program where the table will be read from secondary storage for + each invocation). * Implement less naive powm, using k-ary exponentiation for k = 3 or perhaps k = 4. |