File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/lib/converter/plugins Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const NEVER_RENDERED = [
52
52
* - Handle visibility flags (`@private`, `@protected`. `@public`)
53
53
* - Handle module renames (`@module`)
54
54
* - Remove excluded tags & comment discovery tags (`@module`, `@packageDocumentation`)
55
- * - Copy comments for type parameters from the parent container
55
+ * - Copy comments for type parameters from the parent container (for classes/interfaces)
56
56
*
57
57
* Resolve begin:
58
58
* - Remove hidden reflections
@@ -61,7 +61,7 @@ const NEVER_RENDERED = [
61
61
* - Apply `@label` tag
62
62
* - Copy comments on signature containers to the signature if signatures don't already have a comment
63
63
* and then remove the comment on the container.
64
- * - Copy comments from signatures to parameters and type parameters (again? why? )
64
+ * - Copy comments to parameters and type parameters (for signatures )
65
65
* - Apply `@group` and `@category` tags
66
66
*
67
67
* Resolve end:
@@ -185,7 +185,6 @@ export class CommentPlugin extends ConverterComponent {
185
185
if ( ! tag ) {
186
186
tag = comment . getIdentifiedTag ( reflection . name , "@param" ) ;
187
187
}
188
-
189
188
if ( tag ) {
190
189
reflection . comment = new Comment ( tag . content ) ;
191
190
removeIfPresent ( comment . blockTags , tag ) ;
You can’t perform that action at this time.
0 commit comments