Skip to content

Commit

Permalink
Fix typo in comment for Input.Tok#isSlashStarComment.
Browse files Browse the repository at this point in the history
It appears the comment may have been copied from Input.Tok#isSlashSlashComment.

PiperOrigin-RevId: 381866447
  • Loading branch information
java-team-github-bot authored and google-java-format Team committed Jun 28, 2021
1 parent cad842c commit 135f5e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/com/google/googlejavaformat/Input.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface Tok {
/** Is the {@code Tok} a "//" comment? */
boolean isSlashSlashComment();

/** Is the {@code Tok} a "//" comment? */
/** Is the {@code Tok} a "/*" comment? */
boolean isSlashStarComment();

/** Is the {@code Tok} a javadoc comment? */
Expand Down

0 comments on commit 135f5e9

Please sign in to comment.