From dc7179c528a5c03e1898c8f5275207ceea818258 Mon Sep 17 00:00:00 2001 From: Alec Musasa Date: Wed, 30 Aug 2023 12:50:06 +0200 Subject: [PATCH] Fix typo in reference documentation intro Closes gh-31135 --- .../modules/ROOT/pages/core/aop/introduction-defn.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/core/aop/introduction-defn.adoc b/framework-docs/modules/ROOT/pages/core/aop/introduction-defn.adoc index 82b705f17c2..128d6cb4288 100644 --- a/framework-docs/modules/ROOT/pages/core/aop/introduction-defn.adoc +++ b/framework-docs/modules/ROOT/pages/core/aop/introduction-defn.adoc @@ -31,7 +31,7 @@ However, it would be even more confusing if Spring used its own terminology. the "advised object". Since Spring AOP is implemented by using runtime proxies, this object is always a proxied object. * AOP proxy: An object created by the AOP framework in order to implement the aspect - contracts (advise method executions and so on). In the Spring Framework, an AOP proxy + contracts (advice method executions and so on). In the Spring Framework, an AOP proxy is a JDK dynamic proxy or a CGLIB proxy. * Weaving: linking aspects with other application types or objects to create an advised object. This can be done at compile time (using the AspectJ compiler, for