From 1edd7c3540abf04c90f6e2e642d778e39a5d917d Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Mon, 30 Apr 2018 13:30:27 -0700 Subject: [PATCH] Grammatical change. --- src/docs/asciidoc/web/webflux.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index 91f69370e7..c76b839351 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -207,7 +207,7 @@ Maven or Gradle dependencies. Spring Boot defaults to Netty because it is more w used in the async, non-blocking space, and provides a client and a server share resources. Tomcat and Jetty can be used with both Spring MVC and WebFlux. Keep in mind however that -the way they're used is very differently. Spring MVC relies on Servlet blocking I/O and +the way they're used is very different. Spring MVC relies on Servlet blocking I/O and allows applications to use the Servlet API directly if they need to. Spring WebFlux relies on Servlet 3.1 non-blocking I/O and uses the Servlet API behind a low-level adapter and not exposed for direct use.