From 6c6e44b58e011fdb7e7de016d7fa4c6c8a5c606f Mon Sep 17 00:00:00 2001 From: Nickloas Date: Sat, 28 Apr 2018 16:46:11 +0800 Subject: [PATCH] Fix typo Closes gh-1813 --- src/docs/asciidoc/core/core-aop.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/core/core-aop.adoc b/src/docs/asciidoc/core/core-aop.adoc index 9611d894e8af..2d3eae9ceb34 100644 --- a/src/docs/asciidoc/core/core-aop.adoc +++ b/src/docs/asciidoc/core/core-aop.adoc @@ -62,7 +62,7 @@ however, it would be even more confusing if Spring used its own terminology. method or the handling of an exception. In Spring AOP, a join point __always__ represents a method execution. * __Advice__: action taken by an aspect at a particular join point. Different types of - advice include "around," "before" and "after" advice. (Advice types are discussed + advice include "around", "before" and "after" advice. (Advice types are discussed below.) Many AOP frameworks, including Spring, model an advice as an __interceptor__, maintaining a chain of interceptors __around__ the join point. * __Pointcut__: a predicate that matches join points. Advice is associated with a