diff options
author | Mike Buland <eichlan@xagasoft.com> | 2015-01-29 08:56:34 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2015-01-29 08:56:34 -0700 |
commit | 42e77eb7ba24d2b7ebd47fadbc9240dc4520a5d6 (patch) | |
tree | 0f1d227194fb66c0d8288c4726e112c035aa9220 /src | |
parent | 4d0ab515cc4142b22247e26f1b57b5cd0a6b31d5 (diff) | |
download | clic-42e77eb7ba24d2b7ebd47fadbc9240dc4520a5d6.tar.gz clic-42e77eb7ba24d2b7ebd47fadbc9240dc4520a5d6.tar.bz2 clic-42e77eb7ba24d2b7ebd47fadbc9240dc4520a5d6.tar.xz clic-42e77eb7ba24d2b7ebd47fadbc9240dc4520a5d6.zip |
Minor tweak to some display text.
Diffstat (limited to '')
-rw-r--r-- | src/options.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options.cpp b/src/options.cpp index d88df3b..0633c26 100644 --- a/src/options.cpp +++ b/src/options.cpp | |||
@@ -23,7 +23,8 @@ Options::Options( int argc, char *argv[] ) : | |||
23 | addOption( Bu::slot(this, &Options::selfTest), "self-test", | 23 | addOption( Bu::slot(this, &Options::selfTest), "self-test", |
24 | "Run a series of tests to ensure everything is working correctly."); | 24 | "Run a series of tests to ensure everything is working correctly."); |
25 | addOption( Bu::slot(this, &Options::textPrimes), "text-primes", | 25 | addOption( Bu::slot(this, &Options::textPrimes), "text-primes", |
26 | "Generate primes in base 36 that only have digits > 9 in them."); | 26 | "Generate primes in base 36 that only have digits > 9 in them. " |
27 | "Yes, this is entirely silly and purely for entertainment."); | ||
27 | addOption( Bu::slot(this, &Options::isPrime), 'p', "is-prime", | 28 | addOption( Bu::slot(this, &Options::isPrime), 'p', "is-prime", |
28 | "Tests every parameter after to see if it is prime then prints out " | 29 | "Tests every parameter after to see if it is prime then prints out " |
29 | "the ones that are prime. Set radix first."); | 30 | "the ones that are prime. Set radix first."); |