Skip to content

Commit 008a0a1

Browse files
maksimkoniukhausbrannen
authored andcommitted
Fix interface and class names in examples in core-aop doc
Closes gh-25351
1 parent 5b94d9b commit 008a0a1

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
@@ -2410,7 +2410,7 @@ some around advice used in conjunction with a number of strongly typed parameter
24102410
Person getPerson(String personName, int age);
24112411
}
24122412
2413-
public class DefaultFooService implements FooService {
2413+
public class DefaultPersonService implements PersonService {
24142414
24152415
public Person getPerson(String name, int age) {
24162416
return new Person(name, age);
@@ -2427,7 +2427,7 @@ some around advice used in conjunction with a number of strongly typed parameter
24272427
fun getPerson(personName: String, age: Int): Person
24282428
}
24292429
2430-
class DefaultFooService : FooService {
2430+
class DefaultPersonService : PersonService {
24312431
24322432
fun getPerson(name: String, age: Int): Person {
24332433
return Person(name, age)

0 commit comments

Comments
 (0)