Author: jholmes Date: Thu Jul 19 06:35:21 2007 New Revision: 557616 URL: http://svn.apache.org/viewvc?view=rev&rev=557616 Log: Fix some typos and bad english.
Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java?view=diff&rev=557616&r1=557615&r2=557616 ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/URL.java Thu Jul 19 06:35:21 2007 @@ -250,7 +250,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; } @@ -270,7 +270,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; } @@ -285,7 +285,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; }