You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/04/23 11:02:11 UTC

[1/3] git commit: Fix spelling

Updated Branches:
  refs/heads/master 9ad9444f1 -> b8b9f3cd9


Fix spelling


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

Branch: refs/heads/master
Commit: b8b9f3cd9fa9f8d53393d07aa459d839aca1695d
Parents: 6c39c69
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Apr 23 12:01:35 2012 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Apr 23 12:01:35 2012 +0300

----------------------------------------------------------------------
 .../java/org/apache/wicket/markup/MarkupCache.java |    2 +-
 .../panel/AssociatedMarkupSourcingStrategy.java    |    2 +-
 .../html/panel/FragmentMarkupSourcingStrategy.java |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/b8b9f3cd/wicket-core/src/main/java/org/apache/wicket/markup/MarkupCache.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/MarkupCache.java b/wicket-core/src/main/java/org/apache/wicket/markup/MarkupCache.java
index 217f1c2..b56605b 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/MarkupCache.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/MarkupCache.java
@@ -310,7 +310,7 @@ public class MarkupCache implements IMarkupCache
 			}
 		}
 
-		// NO_MARKUP should only be used insight the Cache.
+		// NO_MARKUP should only be used inside the Cache.
 		if (markup == Markup.NO_MARKUP)
 		{
 			markup = null;

http://git-wip-us.apache.org/repos/asf/wicket/blob/b8b9f3cd/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/AssociatedMarkupSourcingStrategy.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/AssociatedMarkupSourcingStrategy.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/AssociatedMarkupSourcingStrategy.java
index 801e4ae..916607c 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/AssociatedMarkupSourcingStrategy.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/AssociatedMarkupSourcingStrategy.java
@@ -359,7 +359,7 @@ public abstract class AssociatedMarkupSourcingStrategy extends AbstractMarkupSou
 					return associatedMarkupStream.getCurrentIndex();
 				}
 				// wicket:head must be before border, panel or extend
-				// @TODO why is that? Why can't it be anywhere? (except insight wicket:fragment
+				// @TODO why is that? Why can't it be anywhere? (except inside wicket:fragment)
 				else if (tag.isOpen() &&
 					(tag.isPanelTag() || tag.isBorderTag() || tag.isExtendTag()))
 				{

http://git-wip-us.apache.org/repos/asf/wicket/blob/b8b9f3cd/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/FragmentMarkupSourcingStrategy.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/FragmentMarkupSourcingStrategy.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/FragmentMarkupSourcingStrategy.java
index 8a6cd94..34d8fdc 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/FragmentMarkupSourcingStrategy.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/FragmentMarkupSourcingStrategy.java
@@ -149,7 +149,7 @@ public class FragmentMarkupSourcingStrategy extends AbstractMarkupSourcingStrate
 			return childMarkup;
 		}
 
-		// search for the child insight the fragment markup
+		// search for the child inside the fragment markup
 		return childMarkup.find(child.getId());
 	}
 }