You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by ti...@apache.org on 2004/11/05 21:54:06 UTC

svn commit: rev 56697 - cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel

Author: tim
Date: Fri Nov  5 12:54:06 2004
New Revision: 56697

Modified:
   cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java
Log:
typo in comment

Modified: cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java
==============================================================================
--- cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java	(original)
+++ cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java	Fri Nov  5 12:54:06 2004
@@ -413,7 +413,7 @@
         	attrs.addCDATAAttribute("id", getRequestParameterName());
         }
 
-        // Add the "state" attribute is different from active (the default state)
+        // Add the "state" attribute if different from active (the default state)
         WidgetState state = getCombinedState();
         if (state != WidgetState.ACTIVE) {
             attrs.addCDATAAttribute("state", getCombinedState().getName());