@@ -22,8 +22,6 @@ var path = require("path");
22
22
* - `html`
23
23
*
24
24
* Registering the `tags` hook adds JavaScript-related tags:
25
- * - [bit-docs-js/tags/codeend @codeend]
26
- * - [bit-docs-js/tags/codestart @codestart]
27
25
* - [bit-docs-js/tags/function @function]
28
26
* - [bit-docs-js/tags/module @module]
29
27
* - [bit-docs-js/tags/option @option]
@@ -32,12 +30,12 @@ var path = require("path");
32
30
* - [bit-docs-js/tags/prototype @prototype]
33
31
* - [bit-docs-js/tags/return @return]
34
32
* - [bit-docs-js/tags/signature @signature]
35
- * - [bit-docs-js/tags/static @static]
36
33
* - [bit-docs-js/tags/typedef @typedef]
37
34
*
38
35
* Registering the `processor` hook adds a processor for `*.js` files that gets
39
36
* code comments in JavaScript, and processes tags like `@function` and
40
- * `@param` into docObjects that are subsequently added to the docMap.
37
+ * `@param` into [bit-docs/types/docObject]s that are subsequently added to the
38
+ * [bit-docs/types/docMap].
41
39
*
42
40
* The processor is also smart enough process regular comments above functions
43
41
* that have not explicitly been documented with closure type annotations, and
@@ -54,5 +52,4 @@ module.exports = function(bitDocs){
54
52
bitDocs . register ( "html" , {
55
53
templates : path . join ( __dirname , "templates" )
56
54
} ) ;
57
-
58
55
} ;
0 commit comments