Skip to content

Commit

Permalink
Fix up documentation on comment reference parser to align with wiki (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollins-g committed Apr 19, 2023
1 parent b9178fc commit 8e8b36e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/comment_references/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ class CommentReferenceParser {
/// ```text
/// <rawCommentReference> ::= <prefix>?<commentReference><suffix>?
///
/// <commentReference> ::= (<packageName> '.')? (<libraryName> '.')? <dartdocIdentifier> <typeArguments> ('.' <identifier> <typeArguments>)*
/// <commentReference> ::= <globalScopeReference>? <dartdocIdentifier> <typeArguments>? ('.' <identifier> <typeArguments>?)*
///
/// <globalScopeReference> ::= (<packageName> '.')? (<libraryName> '.')
/// ```
List<CommentReferenceNode> _parseRawCommentReference() {
var children = <CommentReferenceNode>[];
Expand Down

0 comments on commit 8e8b36e

Please sign in to comment.