From f5056c361e28ea2b7caea592393276ff45696f9b Mon Sep 17 00:00:00 2001 From: matthieugomez Date: Tue, 3 Mar 2020 06:53:08 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41e16de..f08f46e 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ evaluate(Levenshtein(), "martha", "marhta") Levenshtein()("martha", "marhta") ``` -You can also compute the distances between two iterators, as long as there exists a `length` method: +You can also compute a distance between two iterators: ```julia evaluate(Levenshtein(), [1, 5, 6], [1, 6, 5]) 2