Fixes small typos
Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/fd54df1a Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/fd54df1a Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/fd54df1a Branch: refs/heads/master Commit: fd54df1a736e566f1271b3c49523a9fd28945d0b Parents: f2334bd Author: Lukasz Lenart <lukasz.len...@gmail.com> Authored: Mon Jul 17 08:14:24 2017 +0200 Committer: Lukasz Lenart <lukasz.len...@gmail.com> Committed: Mon Jul 17 08:14:24 2017 +0200 ---------------------------------------------------------------------- source/plugins/convention/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts-site/blob/fd54df1a/source/plugins/convention/index.md ---------------------------------------------------------------------- diff --git a/source/plugins/convention/index.md b/source/plugins/convention/index.md index 37c794c..424b428 100644 --- a/source/plugins/convention/index.md +++ b/source/plugins/convention/index.md @@ -187,7 +187,7 @@ The message is Hello World! ## Results and result codes -The Convention Plugin will pre-configure all of you action classes when Struts is started. By default, this +The Convention Plugin will pre-configure all of your action classes when Struts is started. By default, this configuration will also contain results for any JSPs that it can find within the application. The JSPs have an additional feature that allows different JSPs to be used based on the result code of the action. Since action methods return Strings and these Strings are traditionally used to locate results for the action, the Convention plugin @@ -491,8 +491,8 @@ public class HelloWorld extends ActionSupport { } ``` -The following interceptors will be applied to "action1": `interceptor-1` , all interceptors from `defaultStack`, -`validation`. All interceptors from `defaultStack` will be applied to "action2". +The following interceptors will be applied to "action1": `interceptor-1`, all interceptors from `defaultStack`, +and `validation`. For "action2", `interceptor-1` and all interceptors from `defaultStack` will be applied to "action2". > If you get errors like "Unable to find interceptor class referenced by > ref-name XYZ". This means that the package > where Convention is placing your actions, does not extend the package where > the interceptor is defined. To fix this