082f54ce901345c6d0edd9992395acde932d642c chmalee Mon Sep 30 16:14:15 2019 -0700 Fixing typo in hubCheck output, found by Lou diff --git src/hg/utils/hubCheck/hubCheck.c src/hg/utils/hubCheck/hubCheck.c index a1c4a03..11bb485 100644 --- src/hg/utils/hubCheck/hubCheck.c +++ src/hg/utils/hubCheck/hubCheck.c @@ -652,31 +652,31 @@ // for now all the combination style stanzas can get checked here, but // in the future they might need their own routines if (! (tdbIsComposite(tdb) || tdbIsCompositeView(tdb) || tdbIsContainer(tdb)) ) return retVal; struct errCatch *errCatch = errCatchNew(); if (errCatchStart(errCatch)) { // check that subgroup lines are syntactically correct: // "subGroup name Title tag1=value1 ..." (void)membersForAllSubGroupsGet(tdb, NULL); // check that multiWigs have > 1 track if (tdbIsContainer(tdb) && slCount(tdb->subtracks) < 2) { - errAbort("container multiWig %s has only one subtrack. multiWigs must have more than subtrack", tdb->track); + errAbort("container multiWig %s has only one subtrack. multiWigs must have more than one subtrack", tdb->track); } } errCatchEnd(errCatch); if (errCatch->gotError || errCatch->gotWarning) { // don't add a new line because one will already be inserted by the errCatch->message trackDbErr(errors, errCatch->message->string, genome, tdb, options->htmlOut); retVal = 1; } return retVal; } void hubCheckParentsAndChildren(struct trackDb *tdb)