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 2010/12/23 20:36:48 UTC

svn commit: r1052364 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/parser/filter/EnclosureHandler.java

Author: mgrigorov
Date: Thu Dec 23 19:36:48 2010
New Revision: 1052364

URL: http://svn.apache.org/viewvc?rev=1052364&view=rev
Log:
Fix typos in comments.
No functional changes!

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/parser/filter/EnclosureHandler.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/parser/filter/EnclosureHandler.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/parser/filter/EnclosureHandler.java?rev=1052364&r1=1052363&r2=1052364&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/parser/filter/EnclosureHandler.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/parser/filter/EnclosureHandler.java Thu Dec 23 19:36:48 2010
@@ -92,7 +92,7 @@ public final class EnclosureHandler exte
 				}
 				stack.push(tag);
 			}
-			// If close tag, than remove the tag from the stack and update
+			// If close tag, then remove the tag from the stack and update
 			// the child attribute of the open tag if required
 			else if (tag.isClose())
 			{
@@ -105,7 +105,7 @@ public final class EnclosureHandler exte
 				ComponentTag lastEnclosure = stack.pop();
 
 				// If the child attribute has not been given by the user,
-				// than ...
+				// then ...
 				if (childId != null)
 				{
 					lastEnclosure.put(CHILD_ATTRIBUTE, childId);
@@ -128,7 +128,7 @@ public final class EnclosureHandler exte
 		{
 			ComponentTag lastEnclosure = stack.lastElement();
 
-			// If the enclosure tag has NO child attribute, than ...
+			// If the enclosure tag has NO child attribute, then ...
 			if (lastEnclosure.getString(CHILD_ATTRIBUTE) == null)
 			{
 				// We encountered more than one child component inside