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-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 0829b714 Javadoc, no need to abbreviate in documentation
0829b714 is described below

commit 0829b7146f2200bbc77380d3d93cfee6ff8ad020
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 17 08:37:18 2023 -0400

    Javadoc, no need to abbreviate in documentation
---
 .../java/org/apache/commons/text/translate/JavaUnicodeEscaper.java    | 4 ++--
 src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/text/translate/JavaUnicodeEscaper.java 
b/src/main/java/org/apache/commons/text/translate/JavaUnicodeEscaper.java
index 084c8eba..a1499c8a 100644
--- a/src/main/java/org/apache/commons/text/translate/JavaUnicodeEscaper.java
+++ b/src/main/java/org/apache/commons/text/translate/JavaUnicodeEscaper.java
@@ -88,11 +88,11 @@ public class JavaUnicodeEscaper extends UnicodeEscaper {
     }
 
     /**
-     * Converts the given code point to a hex string of the form {@code 
"\\uXXXX\\uXXXX"}.
+     * Converts the given code point to a hexadecimal string of the form 
{@code "\\uXXXX\\uXXXX"}.
      *
      * @param codePoint
      *            a Unicode code point
-     * @return The hex string for the given code point
+     * @return The hexadecimal string for the given code point
      */
     @Override
     protected String toUtf16Escape(final int codePoint) {
diff --git 
a/src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java 
b/src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java
index ea7081dc..c4daa86e 100644
--- a/src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java
+++ b/src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java
@@ -100,11 +100,11 @@ public class UnicodeEscaper extends CodePointTranslator {
     }
 
     /**
-     * Converts the given code point to a hex string of the form {@code 
"\\uXXXX"}.
+     * Converts the given code point to a hexadecimal string of the form 
{@code "\\uXXXX"}.
      *
      * @param codePoint
      *            a Unicode code point
-     * @return The hex string for the given code point
+     * @return The hexadecimal string for the given code point
      *
      */
     protected String toUtf16Escape(final int codePoint) {

Reply via email to