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 9f0d0075 Javadoc
9f0d0075 is described below

commit 9f0d0075a1db178d57bdec447757b0347c3e1dfb
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Dec 14 14:03:54 2023 -0500

    Javadoc
---
 .../org/apache/commons/text/translate/NumericEntityEscaper.java     | 4 ++--
 src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/text/translate/NumericEntityEscaper.java 
b/src/main/java/org/apache/commons/text/translate/NumericEntityEscaper.java
index 27464fea..0e3ea545 100644
--- a/src/main/java/org/apache/commons/text/translate/NumericEntityEscaper.java
+++ b/src/main/java/org/apache/commons/text/translate/NumericEntityEscaper.java
@@ -70,10 +70,10 @@ public class NumericEntityEscaper extends 
CodePointTranslator {
         return new NumericEntityEscaper(codePointLow, codePointHigh, false);
     }
 
-    /** whether to escape between the boundaries or outside them. */
+    /** Whether to escape between the boundaries or outside them. */
     private final boolean between;
 
-    /** range from lowest code point to highest code point. */
+    /** Range from lowest code point to highest code point. */
     private final Range<Integer> range;
 
     /**
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 c4daa86e..e94069b4 100644
--- a/src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java
+++ b/src/main/java/org/apache/commons/text/translate/UnicodeEscaper.java
@@ -66,13 +66,13 @@ public class UnicodeEscaper extends CodePointTranslator {
         return new UnicodeEscaper(codePointLow, codePointHigh, false);
     }
 
-    /** int value representing the lowest code point boundary. */
+    /** The lowest code point boundary. */
     private final int below;
 
-    /** int value representing the highest code point boundary. */
+    /** The highest code point boundary. */
     private final int above;
 
-    /** whether to escape between the boundaries or outside them. */
+    /** Whether to escape between the boundaries or outside them. */
     private final boolean between;
 
     /**

Reply via email to