summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rwxr-xr-xreadme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 1d2d054..b1a9af1 100755
--- a/readme.md
+++ b/readme.md
@@ -78,7 +78,7 @@ if (StringMetric.compareJaroWinkler("string1", "string2") >= 0.9) println("It's
The absolute easiest example with one filter is to use the StringMetric and StringFilter convenience objects.
```scala
-import org.hashtree.stringmetric.StringMetric
+import org.hashtree.stringmetric.{ StringFilter, StringMetric }
if (StringMetric.compareJaroWinkler("string1", "string2")(StringFilter.asciiLetterCase) >= 0.9) println("It's likely you're a match!")
```