Skip to content

Commit

Permalink
Merge pull request #472 from Ladicek/fix-type-parse-javadoc
Browse files Browse the repository at this point in the history
Fix invalid HTML in Type.parse() javadoc
  • Loading branch information
Ladicek authored Oct 24, 2024
2 parents c64b741 + 73ba10e commit 2a2f448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jboss/jandex/Type.java
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static Type createWithAnnotations(DotName name, Kind kind, AnnotationInst
* PrimitiveType -> 'boolean' | 'byte' | 'short' | 'int'
* | 'long' | 'float' | 'double' | 'char'
* ReferenceType -> PrimitiveType ('[' ']')+
* | ClassType ('<' TypeArgument (',' TypeArgument)* '>')? ('[' ']')*
* | ClassType ('&lt;' TypeArgument (',' TypeArgument)* '&gt;')? ('[' ']')*
* ClassType -> FULLY_QUALIFIED_NAME
* TypeArgument -> ReferenceType | WildcardType
* WildcardType -> '?' | '?' ('extends' | 'super') ReferenceType
Expand Down

0 comments on commit 2a2f448

Please sign in to comment.