Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/docs/asciidoc/core/core-aop.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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)
Expand Down