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

commit 050fa90143272195773e2d699531f759ce3b6f66
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Dec 26 16:07:26 2025 -0500

    Javadoc: Normalize spelling
---
 .../java/org/apache/commons/scxml2/model/Cancel.java     | 16 ++++++++--------
 .../commons/scxml2/semantics/SCXMLSemanticsImpl.java     |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/model/Cancel.java 
b/src/main/java/org/apache/commons/scxml2/model/Cancel.java
index b9186423..33e94ab9 100644
--- a/src/main/java/org/apache/commons/scxml2/model/Cancel.java
+++ b/src/main/java/org/apache/commons/scxml2/model/Cancel.java
@@ -33,12 +33,12 @@ public class Cancel extends Action {
     private static final long serialVersionUID = 1L;
 
     /**
-     * The ID of the send message that should be cancelled.
+     * The ID of the send message that should be canceled.
      */
     private String sendid;
 
     /**
-     * The expression that evaluates to the ID of the send message that should 
be cancelled.
+     * The expression that evaluates to the ID of the send message that should 
be canceled.
      */
     private String sendidexpr;
 
@@ -71,7 +71,7 @@ public class Cancel extends Action {
     }
 
     /**
-     * Gets the ID of the send message that should be cancelled.
+     * Gets the ID of the send message that should be canceled.
      *
      * @return the sendid.
      */
@@ -80,16 +80,16 @@ public class Cancel extends Action {
     }
 
     /**
-     * Gets the expression that evaluates to the ID of the send message that 
should be cancelled.
+     * Gets the expression that evaluates to the ID of the send message that 
should be canceled.
      *
-     * @return the expression that evaluates to the ID of the send message 
that should be cancelled.
+     * @return the expression that evaluates to the ID of the send message 
that should be canceled.
      */
     public String getSendidexpr() {
         return sendidexpr;
     }
 
     /**
-     * Sets the ID of the send message that should be cancelled.
+     * Sets the ID of the send message that should be canceled.
      *
      * @param sendid The sendid to set.
      */
@@ -98,9 +98,9 @@ public class Cancel extends Action {
     }
 
     /**
-     * Sets the expression that evaluates to the ID of the send message that 
should be cancelled.
+     * Sets the expression that evaluates to the ID of the send message that 
should be canceled.
      *
-     * @param sendidexpr the expression that evaluates to the ID of the send 
message that should be cancelled.
+     * @param sendidexpr the expression that evaluates to the ID of the send 
message that should be canceled.
      */
     public void setSendidexpr(final String sendidexpr) {
         this.sendidexpr = sendidexpr;
diff --git 
a/src/main/java/org/apache/commons/scxml2/semantics/SCXMLSemanticsImpl.java 
b/src/main/java/org/apache/commons/scxml2/semantics/SCXMLSemanticsImpl.java
index e58d656e..31d93242 100644
--- a/src/main/java/org/apache/commons/scxml2/semantics/SCXMLSemanticsImpl.java
+++ b/src/main/java/org/apache/commons/scxml2/semantics/SCXMLSemanticsImpl.java
@@ -581,7 +581,7 @@ public class SCXMLSemanticsImpl implements SCXMLSemantics {
     }
 
     /**
-     * Check if an external event indicates the state machine execution must 
be cancelled.
+     * Check if an external event indicates the state machine execution must 
be canceled.
      *
      * @param event received external event
      * @return true if this event is of type {@link TriggerEvent#CANCEL_EVENT}.

Reply via email to