summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2014-01-03 20:19:41 -0700
committerRocky Madden <git@rockymadden.com>2014-01-03 20:19:41 -0700
commit7b5297100ae32ab90d5682347880132237a7de33 (patch)
tree8722d9a8b4b986569f20425b70c13fd6930e1144
parentb834d53e4562864cdc06d65b8f6fb8ffa9e587a1 (diff)
downloadstringmetric-7b5297100ae32ab90d5682347880132237a7de33.tar.gz
stringmetric-7b5297100ae32ab90d5682347880132237a7de33.tar.bz2
stringmetric-7b5297100ae32ab90d5682347880132237a7de33.zip
Fixed broken links.
-rwxr-xr-xreadme.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/readme.md b/readme.md
index b02980e..4d562b3 100755
--- a/readme.md
+++ b/readme.md
@@ -244,7 +244,7 @@ SoundexAlgorithm.compute("lukasiewicz") // l222
---
## Decorating
-It is possible to decorate algorithms and metrics with additional functionality. This is provided by rich wrapping via implicits, and [StringAlgorithmDecorator](https://github.com/rockymadden/stringmetric/blob/master/core/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala)/[StringMetricDecorator](https://github.com/rockymadden/stringmetric/blob/master/core/source/main/scala/com/rockymadden/stringmetric/Metric.scala). A handful of pre-built transforms are located in the [transform module](https://github.com/rockymadden/stringmetric/blob/master/core/source/main/scala/com/rockymadden/stringmetric/Transform.scala).
+It is possible to decorate algorithms and metrics with additional functionality. This is provided by rich wrapping via implicits, and [StringAlgorithmDecorator](https://github.com/rockymadden/stringmetric/blob/master/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala)/[StringMetricDecorator](https://github.com/rockymadden/stringmetric/blob/master/core/src/main/scala/com/rockymadden/stringmetric/Metric.scala). 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).
---
@@ -292,7 +292,7 @@ __StringAlgorithm:__
```scala
StringAlgorithm.computeWithMetaphone("string")
```
-<sup>Located in the [algorithm module](https://github.com/rockymadden/stringmetric/blob/master/core/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala).</sup>
+<sup>Located in the [algorithm module](https://github.com/rockymadden/stringmetric/blob/master/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala).</sup>
---
@@ -301,7 +301,7 @@ __StringMetric:__
StringMetric.compareWithJaccard(1)("abc123", "abc456")
StringMetric.compareWithJaroWinkler("abc123", "abc456")
```
-<sup>Located in the [metric module](https://github.com/rockymadden/stringmetric/blob/master/core/source/main/scala/com/rockymadden/stringmetric/Metric.scala).</sup>
+<sup>Located in the [metric module](https://github.com/rockymadden/stringmetric/blob/master/core/src/main/scala/com/rockymadden/stringmetric/Metric.scala).</sup>
---