fix javadoc unknown tag warning.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@552111 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doron Cohen 2007-06-30 07:04:27 +00:00
parent ba90fb06c1
commit 9ff9bf8142
1 changed files with 4 additions and 4 deletions

View File

@ -29,11 +29,11 @@ import org.apache.lucene.analysis.TokenFilter;
/**
* Removes elisions from a token stream. For example, "l'avion" (the plane) will be
* tokenized as "avion" (plane).
* <p>
* Note that StandardTokenizer sees " ' " as a space, and cuts it out.
*
* @author Mathieu Lecarme<mlecarme@openwide.fr>
* @see{http://fr.wikipedia.org/wiki/%C3%89lision}
*
* Note that StandardTokenizer sees "" as a space, and cuts it out.
* @see <a href="http://fr.wikipedia.org/wiki/%C3%89lision">Elision in Wikipedia</a>
* @author <a href="mailto:mlecarme@openwide.fr">Mathieu Lecarme</a>
*/
public class ElisionFilter extends TokenFilter {
private Set articles = null;