Author: jholmes Date: Thu Jul 19 06:28:49 2007 New Revision: 557614 URL: http://svn.apache.org/viewvc?view=rev&rev=557614 Log: Fix some typos and bad english.
Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/URL.java Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/URL.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/URL.java?view=diff&rev=557614&r1=557613&r2=557614 ============================================================================== --- struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/URL.java (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/URL.java Thu Jul 19 06:28:49 2007 @@ -293,7 +293,7 @@ this.value = value; } - @StrutsTagAttribute(description="he action generate url for, if not using value") + @StrutsTagAttribute(description="The action to generate the URL for, if not using value") public void setAction(String action) { this.action = action; } @@ -313,7 +313,7 @@ this.encode = encode; } - @StrutsTagAttribute(description="Whether actual context should be included in url", type="Boolean", defaultValue="true") + @StrutsTagAttribute(description="Whether actual context should be included in URL", type="Boolean", defaultValue="true") public void setIncludeContext(boolean includeContext) { this.includeContext = includeContext; } @@ -328,7 +328,7 @@ this.windowState = windowState; } - @StrutsTagAttribute(description="Specifies if this should be a portlet render or action url") + @StrutsTagAttribute(description="Specifies if this should be a portlet render or action URL") public void setPortletUrlType(String portletUrlType) { this.portletUrlType = portletUrlType; }