This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/master by this push: new 8e86c565b Add missing quote new 1d8e656b8 Merge pull request #166 from mclem/patch-1 8e86c565b is described below commit 8e86c565b235db0f8074a829d0c239784b7bb707 Author: Maxime Clement <maxclemen...@gmail.com> AuthorDate: Mon Jun 13 07:09:34 2022 +0200 Add missing quote A quote is missing in one of the code examples, which breaks the code formatting on the Struts website. --- source/plugins/convention/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/plugins/convention/index.md b/source/plugins/convention/index.md index c2bae4e98..bfe8b462f 100644 --- a/source/plugins/convention/index.md +++ b/source/plugins/convention/index.md @@ -435,7 +435,7 @@ import org.apache.struts2.convention.annotation.Action; import org.apache.struts2.convention.annotation.Actions; public class HelloWorld extends ActionSupport { - @Action(interceptorRefs=@InterceptorRef(value="validation",params={"programmatic", "false", "declarative", "true})) + @Action(interceptorRefs=@InterceptorRef(value="validation",params={"programmatic", "false", "declarative", "true"})) public String execute() { return SUCCESS; }