Better JavaDoc for FuzzyDistance
Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/22e64f04 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/22e64f04 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/22e64f04 Branch: refs/heads/master Commit: 22e64f04c7f7cc0da7fb33a62a35c15fe4bc6e62 Parents: 49e60f0 Author: Benedikt Ritter <brit...@apache.org> Authored: Sun Dec 14 21:19:02 2014 +0100 Committer: Benedikt Ritter <brit...@apache.org> Committed: Sun Dec 14 21:19:02 2014 +0100 ---------------------------------------------------------------------- .../org/apache/commons/text/similarity/FuzzyDistance.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/22e64f04/src/main/java/org/apache/commons/text/similarity/FuzzyDistance.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/text/similarity/FuzzyDistance.java b/src/main/java/org/apache/commons/text/similarity/FuzzyDistance.java index de21a75..6d0eab3 100644 --- a/src/main/java/org/apache/commons/text/similarity/FuzzyDistance.java +++ b/src/main/java/org/apache/commons/text/similarity/FuzzyDistance.java @@ -19,10 +19,11 @@ package org.apache.commons.text.similarity; import java.util.Locale; /** + * A matching algorithm that is similar to the searching algorithms implemented in editors such + * as Sublime Text, TextMate, Atom and others. + * * <p> - * This string matching algorithm is similar to the algorithms of editors such - * as Sublime Text, TextMate, Atom and others. One point is given for every - * matched character. Subsequent matches yield two bonus points. A higher score + * One point is given for every matched character. Subsequent matches yield two bonus points. A higher score * indicates a higher similarity. * </p> *