From 3e4f8905a7d75aa009099c1a95fbac8edec4729d Mon Sep 17 00:00:00 2001 From: armansimonyan13 Date: Thu, 21 Mar 2019 22:32:10 +0400 Subject: [PATCH] Fix grammar issue (#22628) --- src/docs/asciidoc/web/webmvc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index 0e8c71d05c6..3bae684af5f 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -1259,7 +1259,7 @@ directly to the response body versus view resolution and rendering with an HTML [[mvc-ann-requestmapping-proxying]] ==== AOP Proxies -In some cases, you many need to decorate a controller with an AOP proxy at runtime. +In some cases, you may need to decorate a controller with an AOP proxy at runtime. One example is if you choose to have `@Transactional` annotations directly on the controller. When this is the case, for controllers specifically, we recommend using class-based proxying. This is typically the default choice with controllers.