Fix up Javadoc

This commit is contained in:
Tom Morris 2020-10-27 17:47:40 -04:00
parent fb96d22dec
commit e809c707ff

View File

@ -64,8 +64,8 @@ public class NGramFingerprintKeyer extends FingerprintKeyer {
/** /**
* Generate a stream of sorted unique character N-grams from a string * Generate a stream of sorted unique character N-grams from a string
* *
* @param String to generate N-grams from * @param s String to generate N-grams from
* @param number of characters per N-gram * @param size number of characters per N-gram
* @return a stream of sorted unique N-gram Strings * @return a stream of sorted unique N-gram Strings
*/ */
protected Stream<String> sorted_ngrams(String s, int size) { protected Stream<String> sorted_ngrams(String s, int size) {