diff --git a/core/src/main/java/org/apache/struts2/components/URL.java b/core/src/main/java/org/apache/struts2/components/URL.java index 455a4b6d0..204469062 100644 --- a/core/src/main/java/org/apache/struts2/components/URL.java +++ b/core/src/main/java/org/apache/struts2/components/URL.java @@ -293,7 +293,7 @@ public class URL extends Component { 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 @@ public class URL extends Component { 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 @@ public class URL extends Component { 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; }