From 52b4765fa7b8ab8210f4686243671a4d5db2b1dc Mon Sep 17 00:00:00 2001 From: matthieugomez Date: Sun, 25 Oct 2015 11:40:18 -0400 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df47d9f..782542d 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ StringDistances allow to compute various distances between strings. It works wit - Add a [Winkler adjustment](https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance) with `Winkler` ```julia - evaluate(Winkler(Jaro), "martha", "marhta") + evaluate(Winkler(Jaro()), "martha", "marhta") evaluate(Winkler(Qgram(2)), "martha", "marhta") ``` While the Winkler adjustment was originally defined in the context of the Jaro distance, it's helpful with other distances. Note: a distance is automatically normalized between 0 and 1 when used with a Winkler adjustment.