This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch feat/struts-730-modernization in repository https://gitbox.apache.org/repos/asf/struts-examples.git
commit b5aac2f3b0088ca942f607f9009d7f9e15690b40 Author: Lukasz Lenart <[email protected]> AuthorDate: Fri Aug 14 13:06:00 2026 +0200 Fix basic-struts README to match the JSP's actual capitalization Line 23 read "Welcome to Struts 2!" but index.jsp:10 renders "Welcome To Struts 2!" (capital T). Commit 64baa49 was meant to make these match but was off by one character. Co-Authored-By: Claude Opus 5 <[email protected]> --- basic-struts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic-struts/README.md b/basic-struts/README.md index 24d8d3d..03f615e 100644 --- a/basic-struts/README.md +++ b/basic-struts/README.md @@ -20,5 +20,5 @@ In a web browser go to: [http://localhost:8080/basic-struts/index.action](http: You should see a web page with ``` -Welcome to Struts 2! +Welcome To Struts 2! ```
