107e0be8c3032792a7953aebe3d754c19242da33
kent
  Sat Apr 27 18:12:10 2013 -0700
Making meta and manifest readers work with URLs.
diff --git src/inc/meta.h src/inc/meta.h
index 6bc0ee5..b9bc371 100644
--- src/inc/meta.h
+++ src/inc/meta.h
@@ -76,18 +76,18 @@
 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);
 /* 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. */
+/* Return hash of meta at all levels of heirarchy keyed by meta value. */
 
 #endif /* META_H */