File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/main/java/com/puppycrawl/tools/checkstyle/api Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments