From f5583c7cfea178a6475cd39510e366cc6694bb78 Mon Sep 17 00:00:00 2001 From: Christian Stein Date: Tue, 31 Mar 2020 13:39:55 +0200 Subject: [PATCH] Fix javadoc syntax Fix javadoc syntax by wrap `<` into an inline code block. --- .../com/google/googlejavaformat/java/JavaInputAstVisitor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/googlejavaformat/java/JavaInputAstVisitor.java b/core/src/main/java/com/google/googlejavaformat/java/JavaInputAstVisitor.java index 11b9e3a0c..7af17452c 100644 --- a/core/src/main/java/com/google/googlejavaformat/java/JavaInputAstVisitor.java +++ b/core/src/main/java/com/google/googlejavaformat/java/JavaInputAstVisitor.java @@ -2574,7 +2574,7 @@ private void visitToDeclare( typeWithDims); } - /** Does not omit the leading '<', which should be associated with the type name. */ + /** Does not omit the leading {@code "<"}, which should be associated with the type name. */ protected void typeParametersRest( List typeParameters, Indent plusIndent) { builder.open(plusIndent);