summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2013-01-08 22:16:22 -0700
committerRocky Madden <git@rockymadden.com>2013-01-08 22:16:22 -0700
commitcda8c861aec62673d698a0c8a18df3740273ebec (patch)
treed07873536c25db9f13405c0135267120da17393c /cli
parent7a56275bce5d3486fdac9c178eb04e3f9c4f2267 (diff)
downloadstringmetric-cda8c861aec62673d698a0c8a18df3740273ebec.tar.gz
stringmetric-cda8c861aec62673d698a0c8a18df3740273ebec.tar.bz2
stringmetric-cda8c861aec62673d698a0c8a18df3740273ebec.zip
Fixed scaladoc wrapping issues.
Diffstat (limited to 'cli')
-rwxr-xr-xcli/source/core/scala/com/rockymadden/stringmetric/cli/phonetic/metaphoneAlgorithm.scala4
-rwxr-xr-xcli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/hammingMetric.scala4
-rwxr-xr-xcli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/jaroWinklerMetric.scala4
-rwxr-xr-xcli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/levenshteinMetric.scala4
-rwxr-xr-xcli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/nGramAlgorithm.scala3
-rwxr-xr-xcli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/weightedLevenshteinMetric.scala4
6 files changed, 12 insertions, 11 deletions
diff --git a/cli/source/core/scala/com/rockymadden/stringmetric/cli/phonetic/metaphoneAlgorithm.scala b/cli/source/core/scala/com/rockymadden/stringmetric/cli/phonetic/metaphoneAlgorithm.scala
index c66c9db..c2d18f9 100755
--- a/cli/source/core/scala/com/rockymadden/stringmetric/cli/phonetic/metaphoneAlgorithm.scala
+++ b/cli/source/core/scala/com/rockymadden/stringmetric/cli/phonetic/metaphoneAlgorithm.scala
@@ -4,8 +4,8 @@ import com.rockymadden.stringmetric.cli._
import com.rockymadden.stringmetric.phonetic.MetaphoneAlgorithm
/**
- * The metaphoneAlgorithm [[com.rockymadden.stringmetric.cli.Command]]. Returns the phonetic representation of the passed
- * string, per the Metaphone algorithm.
+ * The metaphoneAlgorithm [[com.rockymadden.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/com/rockymadden/stringmetric/cli/similarity/hammingMetric.scala b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/hammingMetric.scala
index d88f2c9..ec9e159 100755
--- a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/hammingMetric.scala
+++ b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/hammingMetric.scala
@@ -4,8 +4,8 @@ import com.rockymadden.stringmetric.cli._
import com.rockymadden.stringmetric.similarity.HammingMetric
/**
- * The hammingMetric [[com.rockymadden.stringmetric.cli.Command]]. Compares the number of characters that two equal length
- * strings are different from one another.
+ * The hammingMetric [[com.rockymadden.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/com/rockymadden/stringmetric/cli/similarity/jaroWinklerMetric.scala b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/jaroWinklerMetric.scala
index 7d9f032..4c6dd60 100755
--- a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/jaroWinklerMetric.scala
+++ b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/jaroWinklerMetric.scala
@@ -4,8 +4,8 @@ import com.rockymadden.stringmetric.cli._
import com.rockymadden.stringmetric.similarity.JaroWinklerMetric
/**
- * The jaroWinklerMetric [[com.rockymadden.stringmetric.cli.Command]]. Compares two strings to calculate the Jaro-Winkler
- * distance.
+ * The jaroWinklerMetric [[com.rockymadden.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/com/rockymadden/stringmetric/cli/similarity/levenshteinMetric.scala b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/levenshteinMetric.scala
index 2abe7f0..e48511a 100755
--- a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/levenshteinMetric.scala
+++ b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/levenshteinMetric.scala
@@ -4,8 +4,8 @@ import com.rockymadden.stringmetric.cli._
import com.rockymadden.stringmetric.similarity.LevenshteinMetric
/**
- * The levenshteinMetric [[com.rockymadden.stringmetric.cli.Command]]. Compares the number of characters that two strings
- * are different from one another via insertion, deletion, and substitution.
+ * The levenshteinMetric [[com.rockymadden.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 = {
diff --git a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/nGramAlgorithm.scala b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/nGramAlgorithm.scala
index 195726f..668fa8a 100755
--- a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/nGramAlgorithm.scala
+++ b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/nGramAlgorithm.scala
@@ -4,7 +4,8 @@ import com.rockymadden.stringmetric.cli._
import com.rockymadden.stringmetric.similarity.NGramAlgorithm
/**
- * The nGramAlgorithm [[com.rockymadden.stringmetric.cli.Command]]. Returns the N-Gram representation of the passed string.
+ * The nGramAlgorithm [[com.rockymadden.stringmetric.cli.Command]]. Returns the N-Gram representation of the passed
+ * string.
*/
object nGramAlgorithm extends Command {
override def main(args: Array[String]): Unit = {
diff --git a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/weightedLevenshteinMetric.scala b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/weightedLevenshteinMetric.scala
index c732372..c76e2b4 100755
--- a/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/weightedLevenshteinMetric.scala
+++ b/cli/source/core/scala/com/rockymadden/stringmetric/cli/similarity/weightedLevenshteinMetric.scala
@@ -5,8 +5,8 @@ import com.rockymadden.stringmetric.similarity.WeightedLevenshteinMetric
import scala.math.BigDecimal
/**
- * The weightedLevenshteinMetric [[com.rockymadden.stringmetric.cli.Command]]. Compares the number of characters that two
- * strings are different from one another via insertion, deletion, and substitution. Allows the invoker to indicate
+ * The weightedLevenshteinMetric [[com.rockymadden.stringmetric.cli.Command]]. Compares the number of characters that
+ * two strings are different from one another via insertion, deletion, and substitution. Allows the invoker to indicate
* the weight each operation takes.
*/
object weightedLevenshteinMetric extends Command {