We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c4704 commit 4374c76Copy full SHA for 4374c76
lib/src/model/directives/categorization.dart
@@ -11,8 +11,8 @@ final RegExp _categoryRegExp =
11
/// Mixin parsing the `@category` directive for ModelElements.
12
mixin Categorization on DocumentationComment {
13
@override
14
- String buildDocumentationAddition(String rawDocs) =>
15
- _stripAndSetDartdocCategories(super.buildDocumentationAddition(rawDocs));
+ String buildDocumentationAddition(String docs) =>
+ _stripAndSetDartdocCategories(super.buildDocumentationAddition(docs));
16
17
/// Parse `{@category ...}` and related information in API comments, stripping
18
/// out that information from the given comments and returning the stripped
0 commit comments