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


The following commit(s) were added to refs/heads/master by this push:
     new 9043cb31 Javadocs and comments
9043cb31 is described below

commit 9043cb31f4c9a98775da6d982cbf16b8befcf5e3
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Nov 7 08:41:18 2022 -0500

    Javadocs and comments
    
    Normalize spelling to "behavior"
---
 core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java  | 2 +-
 .../ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java   | 2 +-
 .../src/main/java/org/apache/commons/jelly/tags/ant/GrantProject.java | 2 +-
 .../ant/src/test/java/org/apache/commons/jelly/ant/tag/DummyTag.java  | 2 +-
 .../src/main/java/org/apache/commons/jelly/tags/define/TagTag.java    | 2 +-
 .../java/org/apache/commons/jelly/tags/jms/MessageOperationTag.java   | 4 ++--
 .../java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java     | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java 
b/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
index f28d1d58..c8ef02d8 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
@@ -27,7 +27,7 @@ import org.apache.commons.jelly.XMLOutput;
  *
  *  <p>
  *  By default, the imported script does not have access to
- *  the parent script's variable context.  This behaviour
+ *  the parent script's variable context.  This behavior
  *  may be modified using the <code>inherit</code> attribute.
  *  </p>
  *
diff --git 
a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java 
b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
index 6a44063f..f776d553 100644
--- a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
+++ b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
@@ -46,7 +46,7 @@ import org.apache.tools.ant.types.DataType;
 
 /**
  * Tag supporting ant's Tasks as well as
- * dynamic runtime behaviour for 'unknown' tags.
+ * dynamic runtime behavior for 'unknown' tags.
  *
  * @author <a href="mailto:[email protected]";>bob mcwhirter</a>
  * @author <a href="mailto:[email protected]";>James Strachan</a>
diff --git 
a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/GrantProject.java
 
b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/GrantProject.java
index 5092d4e5..19ce1700 100644
--- 
a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/GrantProject.java
+++ 
b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/GrantProject.java
@@ -55,7 +55,7 @@ public class GrantProject extends Project {
      *  Immediately after initialization, a <code>GrantProject</code>
      *  delegates <b>all</b> calls to the normal ant <code>Project</code>
      *  super class.   Only after installing delegators will custom
-     *  behaviour be achieved.
+     *  behavior be achieved.
      *  </p>
      */
     public GrantProject() {
diff --git 
a/jelly-tags/ant/src/test/java/org/apache/commons/jelly/ant/tag/DummyTag.java 
b/jelly-tags/ant/src/test/java/org/apache/commons/jelly/ant/tag/DummyTag.java
index 4e33ee64..0447982e 100644
--- 
a/jelly-tags/ant/src/test/java/org/apache/commons/jelly/ant/tag/DummyTag.java
+++ 
b/jelly-tags/ant/src/test/java/org/apache/commons/jelly/ant/tag/DummyTag.java
@@ -28,7 +28,7 @@ import org.apache.commons.logging.LogFactory;
 import org.apache.tools.ant.types.Path;
 
 /**
- * A mock tag which is used for testing the Ant nested properties behaviour
+ * A mock tag which is used for testing the Ant nested properties behavior
  *
  * @author <a href="mailto:[email protected]";>James Strachan</a>
  * @version $Revision$
diff --git 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/TagTag.java
 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/TagTag.java
index bb3f4573..1999cec2 100644
--- 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/TagTag.java
+++ 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/TagTag.java
@@ -21,7 +21,7 @@ import org.apache.commons.jelly.XMLOutput;
 
 /**
  * &lt;tag&gt; is used to define a new tag
- * using a Jelly script to implement the behaviour of the tag.
+ * using a Jelly script to implement the behavior of the tag.
  * Parameters can be passed into the new tag using normal XML attribute
  * notations. Inside the body of the tag definition, the attributes can
  * be accessed as normal Jelly variables.</p>
diff --git 
a/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/MessageOperationTag.java
 
b/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/MessageOperationTag.java
index eb9d2c59..a7b89c15 100644
--- 
a/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/MessageOperationTag.java
+++ 
b/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/MessageOperationTag.java
@@ -87,7 +87,7 @@ public abstract class MessageOperationTag extends TagSupport 
implements Connecti
     //-------------------------------------------------------------------------
 
     /**
-     * Strategy Method allowing derived classes to change this behaviour
+     * Strategy Method allowing derived classes to change this behavior
      */
     protected Messenger findConnection() throws JellyTagException, 
JMSException {
         ConnectionContext messengerTag = (ConnectionContext) 
findAncestorWithClass( ConnectionContext.class );
@@ -98,7 +98,7 @@ public abstract class MessageOperationTag extends TagSupport 
implements Connecti
     }
 
     /**
-     * Strategy Method allowing derived classes to change this behaviour
+     * Strategy Method allowing derived classes to change this behavior
      */
     protected Destination findDestination(String subject) throws 
JellyTagException, JMSException {
         return getConnection().getDestination(subject);
diff --git 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
index e305e6f8..c5414504 100644
--- 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
+++ 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
@@ -205,7 +205,7 @@ public class SwingTagLibrary extends TagLibrary {
     //-------------------------------------------------------------------------
 
     /**
-     * Strategy method allowing derived classes to change the registration 
behaviour
+     * Strategy method allowing derived classes to change the registration 
behavior
      */
     protected void registerFactories() {
         registerBeanFactory( "button", JButton.class );

Reply via email to