diff --git a/src/FuzzyMatcher/FuzzyMatcher.class.st b/src/FuzzyMatcher/FuzzyMatcher.class.st index 720fabaf984..b1f2e55d313 100644 --- a/src/FuzzyMatcher/FuzzyMatcher.class.st +++ b/src/FuzzyMatcher/FuzzyMatcher.class.st @@ -1,5 +1,5 @@ " -FuzzyMatcher is an approximate string matching algrorithm that can determine if a string includes a given pattern. +FuzzyMatcher is an approximate string matching algorithm that can determine if a string includes a given pattern. For example, the string 'axby' matches both the pattern 'ab' and, 'ay', but not 'ba'. The algorithm is based on lib_fts[1], and includes an optional scoring algorithm that can be used to sort all the matches based on their similarity to the pattern.