Skip to content

Commit 93a29b2

Browse files
SteLeo1602romani
authored andcommitted
Issue #14631: Updated PARAM_LITERAL to new AST format
1 parent 8685e5a commit 93a29b2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/com/puppycrawl/tools/checkstyle/api/JavadocTokenTypes.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,16 @@ public final class JavadocTokenTypes {
169169
* </ol>
170170
*
171171
* <p><b>Example:</b></p>
172-
* <pre>{@code @param T The bar.}</pre>
172+
* <pre>{@code @param value The parameter of method.}</pre>
173173
* <b>Tree:</b>
174174
* <pre>{@code
175-
* |--JAVADOC_TAG[4x3] : [@param T The bar.]
176-
* |--PARAM_LITERAL[4x3] : [@param]
177-
* |--WS[4x9] : [ ]
178-
* |--PARAMETER_NAME[4x10] : [T]
179-
* |--WS[4x11] : [ ]
180-
* |--DESCRIPTION[4x12] : [The bar.]
181-
* |--TEXT[4x12] : [The bar.]
175+
* JAVADOC_TAG -> JAVADOC_TAG
176+
* |--PARAM_LITERAL -> @param
177+
* |--WS ->
178+
* |--PARAMETER_NAME -> value
179+
* |--WS ->
180+
* `--DESCRIPTION -> DESCRIPTION
181+
* |--TEXT -> The parameter of method.
182182
* }</pre>
183183
*
184184
* @see

0 commit comments

Comments
 (0)