Skip to content

Commit 8c925aa

Browse files
authored
Merge pull request #45 from NationalBI/fix-javadoc-entities
Fix HTML errors in Javadoc.
2 parents 879be48 + 5b96163 commit 8c925aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/info/debatty/java/stringsimilarity/ShingleBased.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
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 &lt;= 0
6969
*/
7070
public ShingleBased(final int k) {
7171
if (k <= 0) {

src/main/java/info/debatty/java/stringsimilarity/interfaces/StringDistance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 &gt;= 0.
3737
* @param s1
3838
* @param s2
3939
* @return

0 commit comments

Comments
 (0)