Skip to content

Commit

Permalink
Fix interface and class names in examples in core-aop doc
Browse files Browse the repository at this point in the history
Closes gh-25351
  • Loading branch information
maksimkoniukhau authored and sbrannen committed Jul 2, 2020
1 parent 5b94d9b commit 008a0a1
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 008a0a1

Please sign in to comment.