From ebfef117bdf0ff2b7888e9f6b45957d31403f27a Mon Sep 17 00:00:00 2001 From: Rocky Madden Date: Fri, 9 Nov 2012 14:09:14 -0700 Subject: Fixed scaladoc wrapping. --- .../org/hashtree/stringmetric/cli/phonetic/metaphoneAlgorithm.scala | 4 ++-- .../org/hashtree/stringmetric/cli/phonetic/nysiisAlgorithm.scala | 4 ++-- .../org/hashtree/stringmetric/cli/phonetic/soundexAlgorithm.scala | 4 ++-- .../hashtree/stringmetric/cli/similarity/diceSorensenMetric.scala | 4 ++-- .../org/hashtree/stringmetric/cli/similarity/hammingMetric.scala | 4 ++-- .../scala/org/hashtree/stringmetric/cli/similarity/jaroMetric.scala | 5 +---- .../org/hashtree/stringmetric/cli/similarity/jaroWinklerMetric.scala | 4 ++-- .../org/hashtree/stringmetric/cli/similarity/levenshteinMetric.scala | 4 ++-- 8 files changed, 15 insertions(+), 18 deletions(-) (limited to 'cli/source') 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 = { -- cgit v1.2.3