summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcore/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala b/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
index a6d6d6e..cf7c04c 100755
--- a/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
+++ b/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
@@ -40,7 +40,7 @@ object Algorithm {
}
- trait AlgorithmDecorator[A] {
+ sealed trait AlgorithmDecorator[A] {
val withMemoization: Algorithm[A]
val withTransform: (Transform[A] => Algorithm[A])