This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new 166e04e8 Javadoc
166e04e8 is described below

commit 166e04e82f920f4ab0a5fe9e0eb95c7350b2b42e
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jul 21 11:23:06 2024 -0400

    Javadoc
    
    Use HTML 'em' tag instead of 'i' tag
---
 .../java/org/apache/commons/codec/language/ColognePhonetic.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java 
b/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java
index a2e97f08..1837e9d0 100644
--- a/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java
+++ b/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java
@@ -30,7 +30,7 @@ import org.apache.commons.codec.StringEncoder;
  * Phonetic) algorithm issued by Hans Joachim Postel in 1969.
  * </p>
  * <p>
- * The <i>K&ouml;lner Phonetik</i> is a phonetic algorithm which is optimized 
for the German language. It is related to
+ * The <em>K&ouml;lner Phonetik</em> is a phonetic algorithm which is 
optimized for the German language. It is related to
  * the well-known soundex algorithm.
  * </p>
  *
@@ -305,14 +305,14 @@ public class ColognePhonetic implements StringEncoder {
 
     /**
      * <p>
-     * Implements the <i>K&ouml;lner Phonetik</i> algorithm.
+     * Implements the <em>K&ouml;lner Phonetik</em> algorithm.
      * </p>
      * <p>
      * In contrast to the initial description of the algorithm, this 
implementation does the encoding in one pass.
      * </p>
      *
      * @param text The source text to encode
-     * @return the corresponding encoding according to the <i>K&ouml;lner 
Phonetik</i> algorithm
+     * @return the corresponding encoding according to the <em>K&ouml;lner 
Phonetik</em> algorithm
      */
     public String colognePhonetic(final String text) {
         if (text == null) {

Reply via email to