Author: jholmes Date: Tue Jul 31 16:54:34 2007 New Revision: 561601 URL: http://svn.apache.org/viewvc?view=rev&rev=561601 Log: Fix typos.
Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Form.java Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Form.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Form.java?view=diff&rev=561601&r1=561600&r2=561601 ============================================================================== --- struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Form.java (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Form.java Tue Jul 31 16:54:34 2007 @@ -204,7 +204,7 @@ } /** - * Form component determine the its HTML element id as follows:- + * The Form component determines its HTML element id as follows:- * <ol> * <li>if an 'id' attribute is specified.</li> * <li>if an 'action' attribute is specified, it will be used as the id.</li> @@ -440,7 +440,7 @@ this.onsubmit = onsubmit; } - @StrutsTagAttribute(description="Set action nane to submit to, without .action suffix", defaultValue="current action") + @StrutsTagAttribute(description="Set action name to submit to, without .action suffix", defaultValue="current action") public void setAction(String action) { this.action = action; } @@ -471,7 +471,7 @@ this.validate = validate; } - @StrutsTagAttribute(description="he portlet mode to display after the form submit") + @StrutsTagAttribute(description="The portlet mode to display after the form submit") public void setPortletMode(String portletMode) { this.portletMode = portletMode; }