Skip to content

Commit 4f10ae2

Browse files
committed
Javadocs were swicthed.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130140 13f79535-47bb-0310-9956-ffa450edef68
1 parent 282192c commit 4f10ae2

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/java/org/apache/commons/codec/language/RefinedSoundex.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,17 @@
5757
import org.apache.commons.codec.StringEncoder;
5858

5959
/**
60-
* Encodes a string into a soundex value. Sounde is an encoding used to
61-
* relate similar names, but can also be used as a general purpose
62-
* scheme to find word with similar phonemes.
60+
* Encodes a string into a refined soundex value.
61+
* A refined soundex code is optimized for spell checking word.
62+
* "Soundex" method originally developed by Margaret Odell and
63+
* Robert Russell
6364
*
6465
* <!-- This link is broken: -->
6566
* <!-- @see <a href="http://www.bluepoof.com/Soundex/info2.html">http://www.bluepoof.com/Soundex/info2.html</a> -->
6667
*
6768
* @author tobrien@transolutions.net
6869
* @author ggregory@seagullsw.com
69-
* @version $Revision: 1.2 $ $Date: 2003/05/12 17:09:38 $
70+
* @version $Revision: 1.3 $ $Date: 2003/05/12 17:17:24 $
7071
*/
7172
public class RefinedSoundex implements StringEncoder {
7273

src/java/org/apache/commons/codec/language/Soundex.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,17 @@
5757
import org.apache.commons.codec.StringEncoder;
5858

5959
/**
60-
* Encodes a string into a refined soundex value.
61-
* A refined soundex code is optimized for spell checking word.
62-
* "Soundex" method originally developed by Margaret Odell and
63-
* Robert Russell
60+
* Encodes a string into a soundex value. Soundex is an encoding used to
61+
* relate similar names, but can also be used as a general purpose
62+
* scheme to find word with similar phonemes.
6463
*
6564
* <!-- This link is broken: -->
6665
* <!-- @see <a href="http://www.bluepoof.com/Soundex/info2.html">http://www.bluepoof.com/Soundex/info2.html</a> -->
6766
*
6867
* @author bayard@generationjava.com
6968
* @author tobrien@transolutions.net
7069
* @author ggregory@seagullsw.com
71-
* @version $Revision: 1.2 $ $Date: 2003/05/12 17:09:38 $
70+
* @version $Revision: 1.3 $ $Date: 2003/05/12 17:17:24 $
7271
*
7372
* @todo Internationalize Exception Messages
7473
*/

0 commit comments

Comments
 (0)