simplify this sentence

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1384478 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-09-13 19:18:21 +00:00
parent e905312abc
commit 610e5a6980
1 changed files with 1 additions and 2 deletions

View File

@ -28,8 +28,7 @@ import java.util.List;
/** Implements the wildcard search query. Supported wildcards are <code>*</code>, which
* matches any character sequence (including the empty one), and <code>?</code>,
* which matches any single character. If you want to treat a wildcard as a literal
* character instead, escape it with '\'.
* which matches any single character. '\' is the escape character.
* <p>
* Note this query can be slow, as it
* needs to iterate over many terms. In order to prevent extremely slow WildcardQueries,