From dca0dd224fde5501cba3aeeccce660bc4842c9c8 Mon Sep 17 00:00:00 2001 From: Sebastian Haas Date: Thu, 29 Aug 2019 11:40:06 +0200 Subject: [PATCH] Fix typo in MultiselectInterceptor javadoc --- .../apache/struts2/interceptor/MultiselectInterceptor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/apache/struts2/interceptor/MultiselectInterceptor.java b/core/src/main/java/org/apache/struts2/interceptor/MultiselectInterceptor.java index 64cab7440..b11c3b782 100644 --- a/core/src/main/java/org/apache/struts2/interceptor/MultiselectInterceptor.java +++ b/core/src/main/java/org/apache/struts2/interceptor/MultiselectInterceptor.java @@ -29,7 +29,7 @@ import java.util.Map; /** * Just as the CheckboxInterceptor checks that if only the hidden field is present, so too does this interceptor. If * the "__multiselect_" request parameter is present and its visible counterpart is not, set a new request parameter to an - * empty Sting. + * empty String. */ public class MultiselectInterceptor extends AbstractInterceptor { private static final long serialVersionUID = 1L; @@ -37,7 +37,7 @@ public class MultiselectInterceptor extends AbstractInterceptor { /** * Just as the CheckboxInterceptor checks that if only the hidden field is present, so too does this interceptor. * If the "__multiselect_" request parameter is present and its visible counterpart is not, set a new request parameter - * to an empty Sting. + * to an empty String. * * @param ai ActionInvocation * @return the result of the action