diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2008-08-09 14:52:54 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-08-11 09:47:01 +0200 |
commit | e4fd2bf4e659755551f6553c76bfd5d5319bba4c (patch) | |
tree | 667d92f33163bca4405d9aa10ca191a23589dbee /src | |
parent | 18e2a330b9ca6db0922f87e3c52d1d3c1d8a294c (diff) | |
download | coreutils-e4fd2bf4e659755551f6553c76bfd5d5319bba4c.tar.xz |
factor: remove duplicate docstring; use the more detailed one
Diffstat (limited to 'src')
-rw-r--r-- | src/factor.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/factor.c b/src/factor.c index 8a1acf8f9..7d0a7ebd9 100644 --- a/src/factor.c +++ b/src/factor.c @@ -530,7 +530,8 @@ Usage: %s [NUMBER]...\n\ "), program_name, program_name); fputs (_("\ -Print the prime factors of each NUMBER.\n\ +Print the prime factors of each specified integer NUMBER. If none\n\ +are specified on the command line, read them from standard input.\n\ \n\ "), stdout); fputs (_("\ @@ -539,11 +540,6 @@ Print the prime factors of each NUMBER.\n\ stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - fputs (_("\ -\n\ -Print the prime factors of all specified integer NUMBERs. If no arguments\n\ -are specified on the command line, they are read from standard input.\n\ -"), stdout); emit_bug_reporting_address (); } exit (status); |