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 6cc5ba69 Fix typos in comments
     new d4ec8c96 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jexl.git
6cc5ba69 is described below

commit 6cc5ba691e6f52b7c366e1b4d4c38938baa510e3
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Aug 21 09:16:11 2024 -0400

    Fix typos in comments
---
 src/main/java/org/apache/commons/jexl3/JexlOptions.java     | 2 +-
 src/main/java/org/apache/commons/jexl3/internal/Script.java | 2 +-
 src/test/java/org/apache/commons/jexl3/JexlTest.java        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlOptions.java 
b/src/main/java/org/apache/commons/jexl3/JexlOptions.java
index 9a973415..5b109caa 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlOptions.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlOptions.java
@@ -249,7 +249,7 @@ public final class JexlOptions {
 
     /**
      * Checks whether the engine considers null in navigation expression as
-     * errors during evaluation..
+     * errors during evaluation.
      * @return true if safe, false otherwise
      */
     public boolean isSafe() {
diff --git a/src/main/java/org/apache/commons/jexl3/internal/Script.java 
b/src/main/java/org/apache/commons/jexl3/internal/Script.java
index d85e04dd..f876b17e 100644
--- a/src/main/java/org/apache/commons/jexl3/internal/Script.java
+++ b/src/main/java/org/apache/commons/jexl3/internal/Script.java
@@ -300,7 +300,7 @@ public class Script implements JexlScript, JexlExpression {
 
     /**
      * Gets this script pragmas
-     * <p>Pragma keys are ant-ish variables, their values are scalar literals..
+     * <p>Pragma keys are ant-ish variables, their values are scalar literals.
      * @return the pragmas
      */
     @Override
diff --git a/src/test/java/org/apache/commons/jexl3/JexlTest.java 
b/src/test/java/org/apache/commons/jexl3/JexlTest.java
index a6a8d024..129c9be6 100644
--- a/src/test/java/org/apache/commons/jexl3/JexlTest.java
+++ b/src/test/java/org/apache/commons/jexl3/JexlTest.java
@@ -511,7 +511,7 @@ public final class JexlTest extends JexlTestCase {
     public void testIntProperty() throws Exception {
         final Foo foo = new Foo();
 
-        // lets check the square function first..
+        // lets check the square function first.
         assertEquals(4, foo.square(2));
         assertEquals(4, foo.square(-2));
 

Reply via email to