diff options
author | Jim Meyering <jim@meyering.net> | 2001-02-04 16:28:41 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-02-04 16:28:41 +0000 |
commit | e7b9e3e7c160530aec2b6dbec294bdb8ba4396f4 (patch) | |
tree | 03354d1b8557ad5fb8cd3609b0bcdbd87c7644d8 | |
parent | ff10610d6c58a02d354a74ff024ce90d69684c76 (diff) | |
download | coreutils-e7b9e3e7c160530aec2b6dbec294bdb8ba4396f4.tar.xz |
(usage): Tweak --help output: it prints the _prime_
factors, not just any factors.
-rw-r--r-- | src/factor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/factor.c b/src/factor.c index 9f3ad3b33..ac4ada1b5 100644 --- a/src/factor.c +++ b/src/factor.c @@ -1,5 +1,5 @@ -/* factor -- print factors of n. - Copyright (C) 86, 1995-2000 Free Software Foundation, Inc. +/* factor -- print prime factors of n. + Copyright (C) 86, 1995-2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -97,7 +97,7 @@ Usage: %s [NUMBER]...\n\ "), program_name, program_name); printf (_("\ -Print factors of each NUMBER; read standard input with no arguments.\n\ +Print the prime factors of each NUMBER.\n\ \n\ --help display this help and exit\n\ --version output version information and exit\n\ |