Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix interface and class names in examples in core-aop doc #25351

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/docs/asciidoc/core/core-aop.adoc
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