9fd6a9d4370534ec6e6e9c3555c294e7692ec5c0
max
  Mon Oct 7 10:39:11 2013 -0700
fixed typo
diff --git src/utils/calc/calc.c src/utils/calc/calc.c
index c9ec8c6..f4c2bc2 100644
--- src/utils/calc/calc.c
+++ src/utils/calc/calc.c
@@ -4,31 +4,31 @@
 #include "hash.h"
 #include "cheapcgi.h"
 #include "dystring.h"
 #include "options.h"
 
 bool humanReadable = FALSE;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "calc - Little command line calculator\n"
   "usage:\n"
   "   calc this + that * theOther / (a + b)\n"
   "Options:\n"
-  "  -h - output result as a human-readable integer numbers, with k/m/g/t suffix
+  "  -h - output result as a human-readable integer numbers, with k/m/g/t suffix\n"
   );
 }
 
 static struct optionSpec options[] = {
    {"h", OPTION_BOOLEAN},
    {NULL, 0},
 };
 
 void calc(int wordCount, char *words[])
 /* calc - Little command line calculator. */
 {
 struct dyString *dy = newDyString(128);
 int i;
 
 for (i=0; i<wordCount; ++i)