Skip to content

Commit

Permalink
Merge pull request spring-projects#23480 from boojongmin
Browse files Browse the repository at this point in the history
* pr/23480:
  Fix typo

Closes spring-projectsgh-23480
  • Loading branch information
snicoll committed Aug 18, 2019
2 parents 063233a + 18eed79 commit dce8036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/docs/asciidoc/core/core-aop.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3180,7 +3180,7 @@ following example shows:
public static void main(String[] args) {
ProxyFactory factory = new ProxyFactory(new SimplePojo());
factory.adddInterface(Pojo.class);
factory.addInterface(Pojo.class);
factory.addAdvice(new RetryAdvice());
factory.setExposeProxy(true);
Expand All @@ -3195,7 +3195,7 @@ following example shows:
----
fun main() {
val factory = ProxyFactory(SimplePojo())
factory.adddInterface(Pojo::class.java)
factory.addInterface(Pojo::class.java)
factory.addAdvice(RetryAdvice())
factory.isExposeProxy = true
Expand Down

0 comments on commit dce8036

Please sign in to comment.