Fix typo in webflux-functional.adoc

Closes gh-24906
This commit is contained in:
onnadi-sa 2020-04-14 08:42:50 -05:00 committed by GitHub
parent 884c7696ce
commit 75457c440c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ the same <<web-reactive.adoc#webflux-reactive-spring-web>> 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<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.