183b7ea6d5861dc5aa8ae734c27b02af6c056722
hiram
  Mon Mar 2 13:10:54 2020 -0800
correct one line header message in usage() refs #25071

diff --git src/hg/pslToBed/pslToBed.c src/hg/pslToBed/pslToBed.c
index b389197..228afdd 100644
--- src/hg/pslToBed/pslToBed.c
+++ src/hg/pslToBed/pslToBed.c
@@ -1,32 +1,32 @@
 /* pslToBed -- tranform a psl format file to a bed format file */
 
 /* Copyright (C) 2012 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "common.h"
 #include "psl.h"
 #include "bed.h"
 #include "options.h"
 
 
 void usage()
 /* print usage infomation and exit */
 {
-errAbort("pslToBed: tranform a psl format file to a bed format file.\n"
+errAbort("pslToBed - tranform a psl format file to a bed format file.\n"
          "usage:\n"
-         "    pslToBed psl bed\n"
+         "    pslToBed [options] psl bed\n"
 	 "options:\n"
 	 "    -cds=cdsFile\n"
 	 "cdsFile specifies a input cds tab-separated file which contains\n"
 	 "genbank-style CDS records showing cdsStart..cdsEnd\n"
 	 "e.g. NM_123456 34..305\n"
 	 "These coordinates are assumed to be in the query coordinate system\n"
 	 "of the psl, like those that are created from genePredToFakePsl\n"
 	 "    -posName\n"
 	 "changes the qName field to qName:qStart-qEnd\n"
 	 "(can be used to create links to query position on details page)\n"
          );
 
 } 
 
 static struct optionSpec options[] = {