Rename buildcfg to config

This commit is contained in:
Tim Schaub
2014-08-21 17:11:13 -06:00
parent c7ba6f4c6e
commit f17c33f631
63 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,15 @@
/**
* Handle the api annotation.
* @param {Object} dictionary The tag dictionary.
*/
exports.defineTags = function(dictionary) {
dictionary.defineTag('api', {
onTagged: function(doclet, tag) {
doclet.api = tag.text || 'experimental';
}
});
};