You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/24 17:41:37 UTC

[commons-scxml] branch master updated: Spelling

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


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

commit b5da9bc26f88ac0f8d563a69b035335c800b7160
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 24 13:41:33 2023 -0400

    Spelling
---
 src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java | 2 +-
 src/test/java/org/apache/commons/scxml2/env/jexl/eventdata-02.xml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java b/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java
index e628ee5..b175719 100644
--- a/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java
+++ b/src/main/java/org/apache/commons/scxml2/env/jexl/JexlEvaluator.java
@@ -177,7 +177,7 @@ public class JexlEvaluator extends AbstractBaseEvaluator {
      * @return new JexlEngine instance
      */
     protected JexlEngine createJexlEngine() {
-        // With null prefix, define top-level user defined functions.
+        // With null prefix, define top-level user-defined functions.
         // See javadoc of org.apache.commons.jexl2.JexlEngine#setFunctions(Map<String,Object> funcs) for detail.
         final Map<String, Object> funcs = new HashMap<>();
         funcs.put(null, JexlBuiltin.class);
diff --git a/src/test/java/org/apache/commons/scxml2/env/jexl/eventdata-02.xml b/src/test/java/org/apache/commons/scxml2/env/jexl/eventdata-02.xml
index 7a873d9..78b7799 100644
--- a/src/test/java/org/apache/commons/scxml2/env/jexl/eventdata-02.xml
+++ b/src/test/java/org/apache/commons/scxml2/env/jexl/eventdata-02.xml
@@ -28,7 +28,7 @@
      </state>
      <final id="state1"/>
      <state id="state2">
-           <!-- ... or an arbitrary, user defined object. -->
+           <!-- ... or an arbitrary, user-defined object. -->
            <transition event="connection.alerting"
                        cond="_event.data.line eq 3" target="state3"/>
            <transition event="connection.alerting"