summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2013-12-28 18:51:41 -0700
committerRocky Madden <git@rockymadden.com>2013-12-28 18:51:41 -0700
commit39ad84a8a52d1a4e3011e0d8134cbf680c3d2873 (patch)
tree4493e073793653e298ad6fbfdde76095411d418a
parent48f312a24dac8fc33ab58bcd3e9cf6557bebf473 (diff)
downloadstringmetric-39ad84a8a52d1a4e3011e0d8134cbf680c3d2873.tar.gz
stringmetric-39ad84a8a52d1a4e3011e0d8134cbf680c3d2873.tar.bz2
stringmetric-39ad84a8a52d1a4e3011e0d8134cbf680c3d2873.zip
Minor typo fixes.
-rwxr-xr-xreadme.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index f4cc67e..85abede 100755
--- a/readme.md
+++ b/readme.md
@@ -58,6 +58,8 @@ __Maven:__
</dependency>
```
+---
+
## Similarity package
Useful for approximate string matching and measurement of string distance. Most metrics calculate the similarity of two strings as a double with a value between 0 and 1. A value of 0 being completely different and a value of 1 being completely similar.
@@ -209,6 +211,8 @@ Output: _(Note that while a double is returned, it can be outside the range of 0
40
```
+---
+
## Phonetic package
Useful for indexing by word pronunciation and performing sounds-like comparisons. All metrics return a boolean value indicating if the two strings sound the same, per the algorithm used. All metrics have an algorithm counterpart which provide the means to perform indexing by word pronunciation.
@@ -350,6 +354,8 @@ r163
l222
```
+---
+
## Decorating
It is possible to decorate algorithms and metrics with additional functionality. The most common decorations are filters, which are useful for filtering strings prior to evaluation (e.g. ignore case, ignore non-alpha, ignore spaces). __NOTE:__ [Memoization decorator queued](https://github.com/rockymadden/stringmetric/issues/5)
@@ -459,6 +465,8 @@ $ metaphonealgorithm dog
tk
```
+---
+
## License
```
The MIT License (MIT)