File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/info/debatty/java/stringsimilarity Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3939 * strings or documents.
4040 *
4141 * Generally speaking, a k-gram is any sequence of k tokens. We use here the
42- * definition from Leskovec, Rajaraman & Ullman (2014), "Mining of Massive
42+ * definition from Leskovec, Rajaraman & Ullman (2014), "Mining of Massive
4343 * Datasets", Cambridge University Press: Multiple subsequent spaces are
4444 * replaced by a single space, and a k-gram is a sequence of k characters.
4545 *
@@ -65,7 +65,7 @@ public abstract class ShingleBased {
6565 /**
6666 *
6767 * @param k
68- * @throws IllegalArgumentException if k is < = 0
68+ * @throws IllegalArgumentException if k is < = 0
6969 */
7070 public ShingleBased (final int k ) {
7171 if (k <= 0 ) {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public interface StringDistance extends Serializable {
3333
3434 /**
3535 * Compute and return a measure of distance.
36- * Must be > = 0.
36+ * Must be > = 0.
3737 * @param s1
3838 * @param s2
3939 * @return
You can’t perform that action at this time.
0 commit comments