summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rwxr-xr-xcore/source/core/scala/com/rockymadden/stringmetric/StringAlgorithm.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/source/core/scala/com/rockymadden/stringmetric/StringAlgorithm.scala b/core/source/core/scala/com/rockymadden/stringmetric/StringAlgorithm.scala
index bc4b202..0d194da 100755
--- a/core/source/core/scala/com/rockymadden/stringmetric/StringAlgorithm.scala
+++ b/core/source/core/scala/com/rockymadden/stringmetric/StringAlgorithm.scala
@@ -1,7 +1,7 @@
package com.rockymadden.stringmetric
trait StringAlgorithm[A, B] extends Algorithm[String, A, B] {
- def compute(charArray: Array[Char])(implicit a: A): Option[Array[_]]
+ def compute(charArray: Array[Char])(implicit a: A): Option[Array[Char]]
}
object StringAlgorithm {