From dd4325fe278d8ff8ae41cdc87d41dc79264f055e Mon Sep 17 00:00:00 2001 From: Samantha Wright Date: Mon, 1 Jul 2024 21:32:21 -0700 Subject: [PATCH] fixed typo --- ARES/application/scidb.lsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARES/application/scidb.lsl b/ARES/application/scidb.lsl index 4c85ce4..53084c5 100644 --- a/ARES/application/scidb.lsl +++ b/ARES/application/scidb.lsl @@ -89,7 +89,7 @@ main(integer src, integer n, string m, key outs, key ins, key user) { integer argc = count(argv); string msg = ""; if(argc == 1) { - msg = "Syntax: " + PROGRAM_NAME + " [-d -m -q -s|-f|-a-p] \n\nLooks up on the specificed [https://www.ncbi.nlm.nih.gov/ NCBI Entrez] database at (default: " + DEFAULT_DB + " at " + DEFAULT_DOMAIN + "). -s will retrieve summaries from a matching WebEnv query. -q will set the query key (default: 1) -p will post queries to sequence databases. -a will fetch abstracts. -f will fetch FASTA sequences."; + msg = "Syntax: " + PROGRAM_NAME + " [-d -m -q -s|-f|-a-p] \n\nLooks up on the specified [https://www.ncbi.nlm.nih.gov/ NCBI Entrez] database at (default: " + DEFAULT_DB + " at " + DEFAULT_DOMAIN + "). -s will retrieve summaries from a matching WebEnv query. -q will set the query key (default: 1) -p will post queries to sequence databases. -a will fetch abstracts. -f will fetch FASTA sequences."; } else { string domain = DEFAULT_DOMAIN; string database = DEFAULT_DB;