Skip to content

Commit

Permalink
Fix ampersands in AOP examples in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hrybs authored and rstoyanchev committed Mar 9, 2020
1 parent 7ce22e2 commit f519588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docs/asciidoc/core/core-aop.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2069,7 +2069,7 @@ collects the `this` object as the join point context and passes it to the advice
<aop:aspect id="myAspect" ref="aBean">
<aop:pointcut id="businessService"
expression="execution(* com.xyz.myapp.service.*.*(..)) &amp;&amp; this(service)"/>
expression="execution(* com.xyz.myapp.service.*.*(..)) && this(service)"/>
<aop:before pointcut-ref="businessService" method="monitor"/>
Expand Down

0 comments on commit f519588

Please sign in to comment.