Skip to content

Commit

Permalink
Fix minor typo in command line help. (#30)
Browse files Browse the repository at this point in the history
Example should be -P not -p when specifying non-default params file.
  • Loading branch information
mriffle authored Dec 22, 2022
1 parent bdfa772 commit 9630b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Comet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void Usage(char *pszCmd)
logout(szTmp);
sprintf(szTmp, " or %s -F1000 -L1500 file1.mzXML <- to search scans 1000 through 1500\n", pszCmd);
logout(szTmp);
sprintf(szTmp, " or %s -pParams.txt *.mzXML <- use parameters in the file 'Params.txt'\n", pszCmd);
sprintf(szTmp, " or %s -PParams.txt *.mzXML <- use parameters in the file 'Params.txt'\n", pszCmd);
logout(szTmp);

logout("\n");
Expand Down

0 comments on commit 9630b26

Please sign in to comment.