From 3559945b53b41a0961730007e4282fd3a14db020 Mon Sep 17 00:00:00 2001 From: James Holmes Date: Thu, 19 Jul 2007 13:28:49 +0000 Subject: [PATCH] Fix some typos and bad english. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_0_X@557614 13f79535-47bb-0310-9956-ffa450edef68 --- core/src/main/java/org/apache/struts2/components/URL.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }