Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/**
* An extension to the base lexical analyzer (JavaTokenizer) that
* captures and processes the contents of doc comments. It does
* so by stripping the leading whitespace and comment starts from
* so by stripping the leading whitespace and comment stars from
* each line of the Javadoc comment.
*
* <p><b>This is NOT part of any supported API.
Expand Down Expand Up @@ -89,7 +89,7 @@ protected Comment processComment(int pos, int endPos, CommentStyle style) {
*/
protected static class JavadocComment extends BasicComment {
/**
* Pattern used to detect a well formed @deprecated tag in a JaavDoc
* Pattern used to detect a well formed @deprecated tag in a Javadoc
* comment.
*/
private static final Pattern DEPRECATED_PATTERN =
Expand Down