From 7ce22e2f3acbf3a603424791939276bad6e8e09b Mon Sep 17 00:00:00 2001 From: Qimiao Chen Date: Fri, 6 Mar 2020 19:34:00 +0800 Subject: [PATCH] Update IntroductionInfo example in reference manual Closes gh-24650 --- src/docs/asciidoc/core/core-aop-api.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/core/core-aop-api.adoc b/src/docs/asciidoc/core/core-aop-api.adoc index 02b76689867..e6cf6a9618b 100644 --- a/src/docs/asciidoc/core/core-aop-api.adoc +++ b/src/docs/asciidoc/core/core-aop-api.adoc @@ -698,7 +698,7 @@ rather than the method, level. You can only use introduction advice with the public interface IntroductionInfo { - Class[] getInterfaces(); + Class[] getInterfaces(); } ---- [source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]