cc3e670e7e04e241d46ad17fe73129c93046d7b6 kent Tue Apr 2 13:31:08 2013 -0700 Made comment correspond to function, not some other function. diff --git src/inc/meta.h src/inc/meta.h index fdd7faf..8a82b97 100644 --- src/inc/meta.h +++ src/inc/meta.h @@ -52,25 +52,25 @@ * will look at the indentation, and if there is a parentTag complain about any * disagreements between indentation and parentTag. */ void metaWriteAll(struct meta *metaList, char *fileName, int indent, boolean withParent); /* Write out metadata, including children, optionally adding meta tag. By convention * for out meta.txt/meta.ra files, indent is 3, withParent is FALSE. */ char *metaLocalTagVal(struct meta *meta, char *tag); /* Return value of tag found in this node, not going up to parents. */ char *metaTagVal(struct meta *meta, char *tag); /* Return value of tag found in this node or if its not there in parents. * Returns NULL if tag not found. */ void metaAddTag(struct meta *meta, char *tag, char *val); -/* Return value of tag found in this node, not going up to parents. */ +/* Add tag/val to meta. */ void metaSortTags(struct meta *meta); /* Do canonical sort so that the first tag stays first but the * rest are alphabetical. */ struct hash *metaHash(struct meta *forest); /* Return hash of meta at all levels of heirarchy keyed by forest. */ #endif /* META_H */