summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-11-02 08:34:53 -0600
committerRocky Madden <git@rockymadden.com>2012-11-02 08:34:53 -0600
commitd0cb2db561dc03b7ebbfeb861b8f77cbfd3a88c0 (patch)
tree31251e995e23abd917f53a307db14b14056f49af /readme.md
parent0127cd5810120decef96d3928d3f9f6e75daaee4 (diff)
downloadstringmetric-d0cb2db561dc03b7ebbfeb861b8f77cbfd3a88c0.tar.gz
stringmetric-d0cb2db561dc03b7ebbfeb861b8f77cbfd3a88c0.tar.bz2
stringmetric-d0cb2db561dc03b7ebbfeb861b8f77cbfd3a88c0.zip
Added missing import.
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!")
```