From 0e9da179106f42f4b8f59c33e996e6c3fb28fc9a Mon Sep 17 00:00:00 2001 From: rahulmlokurte <56769493+rahulmlokurte@users.noreply.github.com> Date: Sat, 25 Apr 2020 12:54:15 +0530 Subject: [PATCH] Fix typo in webmvc-functional.adoc Closes gh-24968 --- src/docs/asciidoc/web/webmvc-functional.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webmvc-functional.adoc b/src/docs/asciidoc/web/webmvc-functional.adoc index 7f502e5694..1bfddf67c5 100644 --- a/src/docs/asciidoc/web/webmvc-functional.adoc +++ b/src/docs/asciidoc/web/webmvc-functional.adoc @@ -16,7 +16,7 @@ the same <>. In WebMvc.fn, an HTTP request is handled with a `HandlerFunction`: a function that takes `ServerRequest` and returns a `ServerResponse`. -Both the request as the response object have immutable contracts that offer JDK 8-friendly +Both the request and the response object have immutable contracts that offer JDK 8-friendly access to the HTTP request and response. `HandlerFunction` is the equivalent of the body of a `@RequestMapping` method in the annotation-based programming model.