3db237ff65edd8bfc52f4b22088feb2acbc78bd0 mspeir Tue Nov 24 11:32:18 2015 -0800 Correcting spelling mistakes in usage and error messages, refs #14062 diff --git src/utils/linesInAllFiles/linesInAllFiles.c src/utils/linesInAllFiles/linesInAllFiles.c index 02e6c12..29b8450 100644 --- src/utils/linesInAllFiles/linesInAllFiles.c +++ src/utils/linesInAllFiles/linesInAllFiles.c @@ -4,31 +4,31 @@ * See README in this or parent directory for licensing information. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "options.h" void usage() /* Explain usage and exit. */ { errAbort( "linesInAllFiles - Print lines that are in all input files to stdout.\n" "usage:\n" " linesInAllFiles in1.txt in2.txt ... inN.txt\n" "The order of output will follow the order in the last file.\n" - "This only puts out the first occurence of the line if it occurs multiple times\n" + "This only puts out the first occurrence of the line if it occurs multiple times\n" "options:\n" " -col=N - if set, file is tab-delimited and just the given column (starting with 1)\n" " In this case only that column will be output\n" ); } int col = -1; static struct optionSpec options[] = { {"col", OPTION_INT,}, {NULL, 0}, }; char *next(struct lineFile *lf) /* Return next input from file or NULL if at end. */