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-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 9fd820b8 Javadoc: Upper case acronym 9fd820b8 is described below commit 9fd820b8231ddd1763c734133415d18f71d08e11 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Dec 10 09:29:07 2024 -0500 Javadoc: Upper case acronym --- src/main/java/org/apache/commons/jexl3/parser/StringParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/parser/StringParser.java b/src/main/java/org/apache/commons/jexl3/parser/StringParser.java index a3f9707d..c4bfc581 100644 --- a/src/main/java/org/apache/commons/jexl3/parser/StringParser.java +++ b/src/main/java/org/apache/commons/jexl3/parser/StringParser.java @@ -45,10 +45,10 @@ public class StringParser { /** The base 10 offset used to convert hexa characters to decimal. */ private static final int BASE10 = 10; - /** The last 7bits ascii character. */ + /** The last 7bits ASCII character. */ private static final char LAST_ASCII = 127; - /** The first printable 7bits ascii character. */ + /** The first printable 7bits ASCII character. */ private static final char FIRST_ASCII = 32; /**