From 008a0a1bdd3a0a5c394cb688108f767ec101e859 Mon Sep 17 00:00:00 2001 From: Maksim <36370045+MaksimKoniukhov@users.noreply.github.com> Date: Wed, 1 Jul 2020 10:32:54 +0300 Subject: [PATCH] Fix interface and class names in examples in core-aop doc Closes gh-25351 --- src/docs/asciidoc/core/core-aop.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/core/core-aop.adoc b/src/docs/asciidoc/core/core-aop.adoc index c78716536cc..5e040d3996c 100644 --- a/src/docs/asciidoc/core/core-aop.adoc +++ b/src/docs/asciidoc/core/core-aop.adoc @@ -2410,7 +2410,7 @@ some around advice used in conjunction with a number of strongly typed parameter Person getPerson(String personName, int age); } - public class DefaultFooService implements FooService { + public class DefaultPersonService implements PersonService { public Person getPerson(String name, int age) { return new Person(name, age); @@ -2427,7 +2427,7 @@ some around advice used in conjunction with a number of strongly typed parameter fun getPerson(personName: String, age: Int): Person } - class DefaultFooService : FooService { + class DefaultPersonService : PersonService { fun getPerson(name: String, age: Int): Person { return Person(name, age)