Skip to content

Commit 4374c76

Browse files
committed
lint
1 parent 17c4704 commit 4374c76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/model/directives/categorization.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ final RegExp _categoryRegExp =
1111
/// Mixin parsing the `@category` directive for ModelElements.
1212
mixin Categorization on DocumentationComment {
1313
@override
14-
String buildDocumentationAddition(String rawDocs) =>
15-
_stripAndSetDartdocCategories(super.buildDocumentationAddition(rawDocs));
14+
String buildDocumentationAddition(String docs) =>
15+
_stripAndSetDartdocCategories(super.buildDocumentationAddition(docs));
1616

1717
/// Parse `{@category ...}` and related information in API comments, stripping
1818
/// out that information from the given comments and returning the stripped

0 commit comments

Comments
 (0)