Fixing typoes

Jim Showalter found two typoes in the web section. This PR fixes them. Thanks, Jim.
This commit is contained in:
Jay Bryant
2018-11-14 14:45:29 -06:00
committed by Rossen Stoyanchev
parent 7bbd4c681f
commit b9603680bc

View File

@@ -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.
====