37937f0ab5e30a346ea92f33c383f8706b7528bf angie Fri Apr 26 10:33:05 2013 -0700 Code review feedback, thanks Tim. refs #10680 diff --git src/inc/annoStreamer.h src/inc/annoStreamer.h index 4151e99..25f2fec 100644 --- src/inc/annoStreamer.h +++ src/inc/annoStreamer.h @@ -15,31 +15,31 @@ struct annoStreamer /* Generic interface to configure a data source's filters and output data, and then * retrieve data, which must be sorted by genomic position. Subclasses of this * will do all the actual work. */ { struct annoStreamer *next; // Public methods struct asObject *(*getAutoSqlObject)(struct annoStreamer *self); void (*setAutoSqlObject)(struct annoStreamer *self, struct asObject *asObj); /* Get and set autoSql representation (do not modify or free!) */ void (*setRegion)(struct annoStreamer *self, char *chrom, uint rStart, uint rEnd); /* Set genomic region for query; if chrom is NULL, region is whole genome. - * This must called on all annoGrator components in query, not a subset. */ + * This must be called on all annoGrator components in query, not a subset. */ char *(*getHeader)(struct annoStreamer *self); /* Get the file header as a string (possibly NULL, possibly multi-line). */ struct annoFilter *(*getFilters)(struct annoStreamer *self); void (*setFilters)(struct annoStreamer *self, struct annoFilter *newFilters); /* Get and set filters */ struct annoRow *(*nextRow)(struct annoStreamer *self, struct lm *lm); /* Get the next item from this source. Use localmem lm to store returned annoRow. */ void (*close)(struct annoStreamer **pSelf); /* Close connection to source and free self. */ // Public members -- callers are on the honor system to access these read-only.