Skip to content

Commit dce8036

Browse files
committed
Merge pull request #23480 from boojongmin
* pr/23480: Fix typo Closes gh-23480
2 parents 063233a + 18eed79 commit dce8036

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)