Fix typo in reference documentation intro

Closes gh-31135
This commit is contained in:
Alec Musasa 2023-08-30 12:50:06 +02:00 committed by Brian Clozel
parent da1d00be7a
commit dc7179c528
1 changed files with 1 additions and 1 deletions

View File

@ -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