From 75457c440c803f50ec74f7fbbae2cb1de51d4202 Mon Sep 17 00:00:00 2001 From: onnadi-sa <51714064+onnadi-sa@users.noreply.github.com> Date: Tue, 14 Apr 2020 08:42:50 -0500 Subject: [PATCH] Fix typo in webflux-functional.adoc Closes gh-24906 --- src/docs/asciidoc/web/webflux-functional.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux-functional.adoc b/src/docs/asciidoc/web/webflux-functional.adoc index 278ef110791..0091846c5bd 100644 --- a/src/docs/asciidoc/web/webflux-functional.adoc +++ b/src/docs/asciidoc/web/webflux-functional.adoc @@ -16,7 +16,7 @@ the same <> foundation. In WebFlux.fn, an HTTP request is handled with a `HandlerFunction`: a function that takes `ServerRequest` and returns a delayed `ServerResponse` (i.e. `Mono`). -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.