You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2015/07/20 14:22:06 UTC

svn commit: r1691921 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/package-info.java

Author: jpountz
Date: Mon Jul 20 12:22:06 2015
New Revision: 1691921

URL: http://svn.apache.org/r1691921
Log:
Fix wikipedia link for Levenshtein edit distance.

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/package-info.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/package-info.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/package-info.java?rev=1691921&r1=1691920&r2=1691921&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/package-info.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/package-info.java Mon Jul 20 12:22:06 2015
@@ -207,7 +207,7 @@
  *     {@link org.apache.lucene.search.FuzzyQuery FuzzyQuery}
  *     matches documents that contain terms similar to the specified term. Similarity is
  *     determined using
- *     <a href="http://en.wikipedia.org/wiki/Levenshtein">Levenshtein (edit) distance</a>.
+ *     <a href="http://en.wikipedia.org/wiki/Levenshtein_distance">Levenshtein distance</a>.
  *     This type of query can be useful when accounting for spelling variations in the collection.
  * 
  *