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 9e797f61a..850bcce75 100644
--- a/core/src/main/java/org/apache/struts2/components/URL.java
+++ b/core/src/main/java/org/apache/struts2/components/URL.java
@@ -68,9 +68,9 @@ import java.io.Writer;
*
namespace - action's namespace
* method (String) - action's method name, defaults to 'execute'
* encode (Boolean) - url encode the generated url. Defaults to 'true'.
- * includeParams (String) - The includeParams attribute may have the value 'none', 'get' or 'all'. Defaults to 'get'.
- * none - include no parameters in the URL
- * get - include only GET parameters in the URL (default)
+ * includeParams (String) - The includeParams attribute may have the value 'none', 'get' or 'all'. Defaults to 'none'.
+ * none - include no parameters in the URL (default)
+ * get - include only GET parameters in the URL
* all - include both GET and POST parameters in the URL
*
* includeContext (Boolean) - Specifies whether to include the web app context path. Defaults to 'true'.