You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by bo...@apache.org on 2018/07/30 01:11:30 UTC

tapestry-5 git commit: Fixed Spelling.

Repository: tapestry-5
Updated Branches:
  refs/heads/master f6e3cb2d1 -> bd719bde6


Fixed Spelling.


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/bd719bde
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/bd719bde
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/bd719bde

Branch: refs/heads/master
Commit: bd719bde6431629499da09ecaa6b380c7e85121e
Parents: f6e3cb2
Author: Jimmy Casey <ca...@gmail.com>
Authored: Sun Jul 29 21:42:33 2018 +0000
Committer: Bob Harner <bo...@gmail.com>
Committed: Sun Jul 29 21:10:20 2018 -0400

----------------------------------------------------------------------
 .../java/org/apache/tapestry5/ioc/util/CaseInsensitiveMap.java   | 2 +-
 .../org/apache/tapestry5/corelib/components/FormFragment.xdoc    | 4 ++--
 .../apache/tapestry5/ioc/internal/services/MethodIterator.java   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bd719bde/commons/src/main/java/org/apache/tapestry5/ioc/util/CaseInsensitiveMap.java
----------------------------------------------------------------------
diff --git a/commons/src/main/java/org/apache/tapestry5/ioc/util/CaseInsensitiveMap.java b/commons/src/main/java/org/apache/tapestry5/ioc/util/CaseInsensitiveMap.java
index ab59d20..d2eadf9 100644
--- a/commons/src/main/java/org/apache/tapestry5/ioc/util/CaseInsensitiveMap.java
+++ b/commons/src/main/java/org/apache/tapestry5/ioc/util/CaseInsensitiveMap.java
@@ -309,7 +309,7 @@ public class CaseInsensitiveMap<V> extends AbstractMap<String, V> implements Ser
 
             size++;
 
-            // This is definately a structural change
+            // This is definitely a structural change
 
             modCount++;
 

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bd719bde/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/FormFragment.xdoc
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/FormFragment.xdoc b/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/FormFragment.xdoc
index ed29742..562b6fd 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/FormFragment.xdoc
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/FormFragment.xdoc
@@ -48,10 +48,10 @@
 
                 <t:beaneditor t:id="billingAddress"/>
 
-                <t:checkbox t:id="separateShipTo" t:mixins="triggerfragment" fragment="seperateShippingAddress"/>
+                <t:checkbox t:id="separateShipTo" t:mixins="triggerfragment" fragment="separateShippingAddress"/>
                 <t:label for="separateShipTo">Separate Ship To?</t:label>
 
-                <t:formfragment t:id="seperateShippingAddress" visible="separateShipTo">
+                <t:formfragment t:id="separateShippingAddress" visible="separateShipTo">
 
                     <h2>Shipping Address</h2>
 

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bd719bde/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/MethodIterator.java
----------------------------------------------------------------------
diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/MethodIterator.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/MethodIterator.java
index c67ba75..b926e86 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/MethodIterator.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/MethodIterator.java
@@ -21,7 +21,7 @@ import static org.apache.tapestry5.ioc.internal.util.CollectionFactory.newList;
 import static org.apache.tapestry5.ioc.internal.util.CollectionFactory.newMap;
 
 /**
- * Utility used to iterate over the publically visible methods of a class or interface. The MethodIterator understands
+ * Utility used to iterate over the publicly visible methods of a class or interface. The MethodIterator understands
  * some complications that can occur when a class inherits the same method from multiple interfaces and with slightly
  * different signatures (due to the fact that declared thrown exceptions can vary slightly for the "same" method).
  *