@@ -2,15 +2,15 @@ import fs from 'fs';
2
2
import path from 'path' ;
3
3
4
4
/**
5
- * Abstract Doc Class .
5
+ * The base doc .
6
6
*
7
- * The following tags / annotations are supported by AbstractDoc and children implementations:
7
+ * The following tags / annotations are supported by DocBase and children implementations:
8
8
*
9
9
* `@abstract`, `@access`, `@deprecated`, `@desc`, `@emits`, `@example`, `@experimental`, `@ignore`, `@listens`,
10
10
* `@param`, `@override`, `@private`, `@property`, `@protected`, `@public`, `@return`, `@returns`, `@see`, `@since`,
11
11
* `@throws`, `@todo`, `@type`, `@version`
12
12
*/
13
- export default class AbstractDoc
13
+ export default class DocBase
14
14
{
15
15
/**
16
16
* Creates doc data statically held.
@@ -29,7 +29,7 @@ export default class AbstractDoc
29
29
*
30
30
* @param {EventProxy } eventbus - An event proxy for the main eventbus.
31
31
*
32
- * @returns {AbstractDoc }
32
+ * @returns {DocBase }
33
33
*/
34
34
static create ( docID , moduleID , ast , node , pathResolver , commentTags = [ ] , eventbus )
35
35
{
@@ -346,7 +346,7 @@ export default class AbstractDoc
346
346
}
347
347
348
348
/**
349
- * The following methods provide the @xxx tags / annotations supported in AbstractDoc . Adding methods makes it easy
349
+ * The following methods provide the @xxx tags / annotations supported in DocBase . Adding methods makes it easy
350
350
* to detect any unknown tags when a method is missing. Child classes may also add the tags that they support.
351
351
*/
352
352
0 commit comments