summaryrefslogtreecommitdiff
path: root/cli/source
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-11-09 14:09:14 -0700
committerRocky Madden <git@rockymadden.com>2012-11-09 14:09:14 -0700
commitebfef117bdf0ff2b7888e9f6b45957d31403f27a (patch)
treec4ace8ff6cbc87f36de25a64449b7559e9966f75 /cli/source
parenteb7b65e7e8b9d1ca5405e25c3780a7336a999ac5 (diff)
downloadstringmetric-ebfef117bdf0ff2b7888e9f6b45957d31403f27a.tar.gz
stringmetric-ebfef117bdf0ff2b7888e9f6b45957d31403f27a.tar.bz2
stringmetric-ebfef117bdf0ff2b7888e9f6b45957d31403f27a.zip
Fixed scaladoc wrapping.
Diffstat (limited to 'cli/source')
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/metaphoneAlgorithm.scala4
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/nysiisAlgorithm.scala4
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/soundexAlgorithm.scala4
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/similarity/diceSorensenMetric.scala4
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/similarity/hammingMetric.scala4
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroMetric.scala5
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroWinklerMetric.scala4
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/similarity/levenshteinMetric.scala4
8 files changed, 15 insertions, 18 deletions
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/metaphoneAlgorithm.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/metaphoneAlgorithm.scala
index 2655c88..fc23695 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/metaphoneAlgorithm.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/metaphoneAlgorithm.scala
@@ -5,8 +5,8 @@ import org.hashtree.stringmetric.cli._
import org.hashtree.stringmetric.phonetic.MetaphoneAlgorithm
/**
- * The metaphoneAlgorithm [[org.hashtree.stringmetric.cli.Command]]. Returns the phonetic representation of the
- * passed string, per the Metaphone algorithm.
+ * The metaphoneAlgorithm [[org.hashtree.stringmetric.cli.Command]]. Returns the phonetic representation of the passed
+ * string, per the Metaphone algorithm.
*/
object metaphoneAlgorithm extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/nysiisAlgorithm.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/nysiisAlgorithm.scala
index 08dcbef..c9c9656 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/nysiisAlgorithm.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/nysiisAlgorithm.scala
@@ -5,8 +5,8 @@ import org.hashtree.stringmetric.cli._
import org.hashtree.stringmetric.phonetic.NysiisAlgorithm
/**
- * The nysiisAlgorithm [[org.hashtree.stringmetric.cli.Command]]. Returns the phonetic representation of the
- * passed string, per the NYSIIS algorithm.
+ * The nysiisAlgorithm [[org.hashtree.stringmetric.cli.Command]]. Returns the phonetic representation of the passed
+ * string, per the NYSIIS algorithm.
*/
object nysiisAlgorithm extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/soundexAlgorithm.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/soundexAlgorithm.scala
index 6874e67..64b4997 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/soundexAlgorithm.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/phonetic/soundexAlgorithm.scala
@@ -5,8 +5,8 @@ import org.hashtree.stringmetric.cli._
import org.hashtree.stringmetric.phonetic.SoundexAlgorithm
/**
- * The soundexAlgorithm [[org.hashtree.stringmetric.cli.Command]]. Returns the phonetic representation of the
- * passed string, per the Soundex algorithm.
+ * The soundexAlgorithm [[org.hashtree.stringmetric.cli.Command]]. Returns the phonetic representation of the passed
+ * string, per the Soundex algorithm.
*/
object soundexAlgorithm extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/diceSorensenMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/diceSorensenMetric.scala
index a8a3f36..229e989 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/diceSorensenMetric.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/diceSorensenMetric.scala
@@ -6,8 +6,8 @@ import org.hashtree.stringmetric.filter.AsciiLetterCaseStringFilter
import org.hashtree.stringmetric.similarity.DiceSorensenMetric
/**
- * The diceSorensenMetric [[org.hashtree.stringmetric.cli.Command]]. Compares the similarity of two strings
- * using the Dice coefficient / Sorensen similarity index.
+ * The diceSorensenMetric [[org.hashtree.stringmetric.cli.Command]]. Compares the similarity of two strings using the
+ * Dice coefficient / Sorensen similarity index.
*/
object diceSorensenMetric extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/hammingMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/hammingMetric.scala
index ce9ceb7..a9d73d3 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/hammingMetric.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/hammingMetric.scala
@@ -6,8 +6,8 @@ import org.hashtree.stringmetric.filter.AsciiLetterCaseStringFilter
import org.hashtree.stringmetric.similarity.HammingMetric
/**
- * The hammingMetric [[org.hashtree.stringmetric.cli.Command]]. Compares the number of characters that two equal
- * length strings are different from one another.
+ * The hammingMetric [[org.hashtree.stringmetric.cli.Command]]. Compares the number of characters that two equal length
+ * strings are different from one another.
*/
object hammingMetric extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroMetric.scala
index ba9a37f..8ebf9f1 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroMetric.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroMetric.scala
@@ -5,10 +5,7 @@ import org.hashtree.stringmetric.cli._
import org.hashtree.stringmetric.filter.AsciiLetterCaseStringFilter
import org.hashtree.stringmetric.similarity.JaroMetric
-/**
- * The jaroMetric [[org.hashtree.stringmetric.cli.Command]]. Compares two strings to calculate the
- * Jaro distance.
- */
+/** The jaroMetric [[org.hashtree.stringmetric.cli.Command]]. Compares two strings to calculate the Jaro distance. */
object jaroMetric extends Command {
override def main(args: Array[String]): Unit = {
val options = OptionMapUtility.toOptionMap(args)
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroWinklerMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroWinklerMetric.scala
index 2bd5603..3c30715 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroWinklerMetric.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/jaroWinklerMetric.scala
@@ -6,8 +6,8 @@ import org.hashtree.stringmetric.filter.AsciiLetterCaseStringFilter
import org.hashtree.stringmetric.similarity.JaroWinklerMetric
/**
- * The jaroWinklerMetric [[org.hashtree.stringmetric.cli.Command]]. Compares two strings to calculate the
- * Jaro-Winkler distance.
+ * The jaroWinklerMetric [[org.hashtree.stringmetric.cli.Command]]. Compares two strings to calculate the Jaro-Winkler
+ * distance.
*/
object jaroWinklerMetric extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/levenshteinMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/levenshteinMetric.scala
index 3d665c5..277898d 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/levenshteinMetric.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/similarity/levenshteinMetric.scala
@@ -6,8 +6,8 @@ import org.hashtree.stringmetric.filter.AsciiLetterCaseStringFilter
import org.hashtree.stringmetric.similarity.LevenshteinMetric
/**
- * The levenshteinMetric [[org.hashtree.stringmetric.cli.Command]]. Compares the number of characters that two
- * strings are different from one another via insertion, deletion, and substitution.
+ * The levenshteinMetric [[org.hashtree.stringmetric.cli.Command]]. Compares the number of characters that two strings
+ * are different from one another via insertion, deletion, and substitution.
*/
object levenshteinMetric extends Command {
override def main(args: Array[String]): Unit = {