summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2014-01-06 09:23:52 -0700
committerRocky Madden <git@rockymadden.com>2014-01-06 09:23:52 -0700
commit5718765df259757a0abec97ba1fd94a776eb14bd (patch)
tree32db3f216d5d34a401b180910da2e5cce5e24d62
parent6fee1ff9dda508086d3cbba2f70b12add716e839 (diff)
downloadstringmetric-5718765df259757a0abec97ba1fd94a776eb14bd.tar.gz
stringmetric-5718765df259757a0abec97ba1fd94a776eb14bd.tar.bz2
stringmetric-5718765df259757a0abec97ba1fd94a776eb14bd.zip
Fixed odd language.
-rwxr-xr-xreadme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 0fd93ce..7710ddf 100755
--- a/readme.md
+++ b/readme.md
@@ -248,7 +248,7 @@ It is possible to decorate algorithms and metrics with additional functionality,
* __withTransform:__ Transform arguments prior to computation/comparison. A handful of pre-built transforms are located in the [transform module](https://github.com/rockymadden/stringmetric/blob/master/core/src/main/scala/com/rockymadden/stringmetric/Transform.scala).
-* __[withMemoization](https://en.wikipedia.org/wiki/Memoization):__ All computations/comparisons are cached. Any further calls made with identical arguments will be looked up, rather than computed/compared.
+* __[withMemoization](https://en.wikipedia.org/wiki/Memoization):__ Computations and comparisons are cached. Future calls made with identical arguments will be looked up, rather than computed.
---