From 9d63f805b3b3ad07f102f6df779b852b2d1f306c Mon Sep 17 00:00:00 2001 From: Wang Jingyu Date: Sun, 18 Mar 2018 00:17:41 +0800 Subject: [PATCH] Fix AsciiDoc typos in AOP documentation (#1743) * Fix AsciiDoc typos in AOP documentation * Polish formatting --- src/docs/asciidoc/core/core-aop.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/docs/asciidoc/core/core-aop.adoc b/src/docs/asciidoc/core/core-aop.adoc index 8743f44d56..9611d894e8 100644 --- a/src/docs/asciidoc/core/core-aop.adoc +++ b/src/docs/asciidoc/core/core-aop.adoc @@ -1630,7 +1630,7 @@ using the `ref` attribute: ---- -The bean backing the aspect (" `aBean`" in this case) can of course be configured and +The bean backing the aspect (`"aBean"` in this case) can of course be configured and dependency injected just like any other Spring bean. @@ -1727,12 +1727,12 @@ parameters of the matching names: } ---- -When combining pointcut sub-expressions, '&&' is awkward within an XML document, and so -the keywords 'and', 'or' and 'not' can be used in place of '&&', '||' and '!' +When combining pointcut sub-expressions, `&&` is awkward within an XML document, and so +the keywords `and`, `or`, and `not` can be used in place of `&&`, `||`, and `!` respectively. For example, the previous pointcut may be better written as: [source,xml,indent=0] -[subs="verbatim"] +[subs="verbatim,quotes"] ----