Skip to content

Commit

Permalink
doc: fix two typos (#4174)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4iku authored Sep 22, 2021
1 parent 3ff2666 commit d0fe78c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class CtCommentProcessor extends AbstractProcessor<CtComment> {
@Override
public boolean isToBeProcessed(CtComment candidate) {
// only process Javadoc
if (candidatate.getCommentType() == CtComment.CommentType.JAVADOC) {
if (candidate.getCommentType() == CtComment.CommentType.JAVADOC) {
return true;
}
return false;
Expand Down
2 changes: 1 addition & 1 deletion doc/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allDescendants = ctElement.getDirectChildren();

A Filter defines a predicate of the form of a `matches` method that
returns `true` if an element has to be selected in the filtering operation.
A Filter is given as parameter to `CtElement#getElement(Filter)` ()or `CtQueryable#filterChildren(Filter)`) which implements a depth-first search algorithm. During AST traversal, the elements satisfying the matching predicate are selected by the filter.
A Filter is given as parameter to `CtElement#getElement(Filter)` (or `CtQueryable#filterChildren(Filter)`) which implements a depth-first search algorithm. During AST traversal, the elements satisfying the matching predicate are selected by the filter.

Here are code examples about the usage of filters. The first example returns all AST nodes of type `CtAssignment`.

Expand Down

0 comments on commit d0fe78c

Please sign in to comment.