Skip to content

Commit 18eed79

Browse files
boojongminsnicoll
authored andcommitted
Fix typo
See gh-23480
1 parent 063233a commit 18eed79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/core/core-aop.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3180,7 +3180,7 @@ following example shows:
31803180
31813181
public static void main(String[] args) {
31823182
ProxyFactory factory = new ProxyFactory(new SimplePojo());
3183-
factory.adddInterface(Pojo.class);
3183+
factory.addInterface(Pojo.class);
31843184
factory.addAdvice(new RetryAdvice());
31853185
factory.setExposeProxy(true);
31863186
@@ -3195,7 +3195,7 @@ following example shows:
31953195
----
31963196
fun main() {
31973197
val factory = ProxyFactory(SimplePojo())
3198-
factory.adddInterface(Pojo::class.java)
3198+
factory.addInterface(Pojo::class.java)
31993199
factory.addAdvice(RetryAdvice())
32003200
factory.isExposeProxy = true
32013201

0 commit comments

Comments
 (0)