From b9603680bc1de8d472ee463d99c11cc229dad2aa Mon Sep 17 00:00:00 2001 From: Jay Bryant Date: Wed, 14 Nov 2018 14:45:29 -0600 Subject: [PATCH] Fixing typoes Jim Showalter found two typoes in the web section. This PR fixes them. Thanks, Jim. --- src/docs/asciidoc/web/webmvc.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index 16ed94af8f7..f53375c4828 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -578,7 +578,7 @@ exceptions, for `@ResponseStatus` annotated exceptions, and for support of If an exception remains unresolved by any `HandlerExceptionResolver` and is, therefore, left to propagate or if the response status is set to an error status (that is, 4xx, 5xx), -Servlet containers ca render a default error page in HTML. To customize the default +Servlet containers can render a default error page in HTML. To customize the default error page of the container, you can declare an error page mapping in `web.xml`. The following example shows how to do so: @@ -4046,7 +4046,7 @@ as the following example shows: ---- <1> Application-specific calculation. -<2> The esponse has been set to 304 (NOT_MODIFIED) -- no further processing. +<2> The response has been set to 304 (NOT_MODIFIED) -- no further processing. <3> Continue with the request processing. ====