summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/options.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options.cpp b/src/options.cpp
index 26f0cb7..c127022 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.");