Skip to content

Commit

Permalink
Correct Elements.not() javadoc.
Browse files Browse the repository at this point in the history
Fixes #177
  • Loading branch information
jhy committed Apr 14, 2012
1 parent 4b0dde4 commit dbc1e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jsoup/select/Elements.java
Expand Up @@ -405,7 +405,7 @@ public Elements select(String query) {
} }


/** /**
* Remove elements from this list that do not match the {@link Selector} query. * Remove elements from this list that match the {@link Selector} query.
* <p> * <p>
* E.g. HTML: {@code <div class=logo>One</div> <div>Two</div>}<br> * E.g. HTML: {@code <div class=logo>One</div> <div>Two</div>}<br>
* <code>Elements divs = doc.select("div").not("#logo");</code><br> * <code>Elements divs = doc.select("div").not("#logo");</code><br>
Expand Down

0 comments on commit dbc1e34

Please sign in to comment.