summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rwxr-xr-xreadme.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/readme.md b/readme.md
index 24690c9..e742727 100755
--- a/readme.md
+++ b/readme.md
@@ -36,29 +36,29 @@ A collection of string metrics and phonetic algorithms implemented in Scala. All
## Filters
Filters, which can optionally be applied, clean up arguments prior to evaluation. Filtering rules can be composed via trait decoration.
-* __Ensures only ASCII control characters matter__
+* __Ensure only ASCII control characters matter__
* API: org.hashtree.stringmetric.filter.AsciiControlOnlyStringFilter
-* __Ensures ASCII controls do not matter__
+* __Ensure ASCII controls do not matter__
* API: org.hashtree.stringmetric.filter.AsciiControlStringFilter
-* __Ensures ASCII letter case-sensitivity does not matter__
+* __Ensure ASCII letter case-sensitivity does not matter__
* API: org.hashtree.stringmetric.filter.AsciiLetterCaseStringFilter
-* __Ensures only ASCII letters and numbers matter__
+* __Ensure only ASCII letters and numbers matter__
* API: org.hashtree.stringmetric.filter.AsciiLetterNumberOnlyStringFilter
-* __Ensures ASCII letters and numbers do not matter__
+* __Ensure ASCII letters and numbers do not matter__
* API: org.hashtree.stringmetric.filter.AsciiLetterNumberStringFilter
-* __Ensures only ASCII letters matter__
+* __Ensure only ASCII letters matter__
* API: org.hashtree.stringmetric.filter.AsciiLetterOnlyStringFilter
-* __Ensures ASCII letters do not matter__
- * API: org.hashtree.stringmetric.filter.AsciiLetterStringFilter
-* __Ensures only ASCII numbers matter__
+* __Ensure ASCII letters do not matter__
+ * AlI: org.hashtree.stringmetric.filter.AsciiLetterStringFilter
+* __Ensure only ASCII numbers matter__
* API: org.hashtree.stringmetric.filter.AsciiNumberOnlyStringFilter
-* __Ensures ASCII numbers do not matter__
+* __Ensure ASCII numbers do not matter__
* API: org.hashtree.stringmetric.filter.AsciiNumberStringFilter
-* __Ensures ASCII spaces do not matter__
+* __Ensure ASCII spaces do not matter__
* API: org.hashtree.stringmetric.filter.AsciiSpaceStringFilter
-* __Ensures only ASCII symbols matter__
+* __Ensure only ASCII symbols matter__
* API: org.hashtree.stringmetric.filter.AsciiSymbolOnlyStringFilter
-* __Ensures ASCII symbols do not matter__
+* __Ensure ASCII symbols do not matter__
* API: org.hashtree.stringmetric.filter.AsciiSymbolStringFilter
## Building the API