Skip to content

Commit

Permalink
Improve examples in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mnhock committed Oct 27, 2024
1 parent 77b6844 commit 52c46e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/USERGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ Taikai.builder()
Taikai.builder()
.namespace("com.company.project")
.java(java -> java
.classesShouldResideOutsidePackage(".*Utils", "com.company.project.utils"))
.classesShouldResideOutsidePackage(".*Dto", "com.company.project.domain"))
.build()
.check();
```
Expand Down Expand Up @@ -308,8 +308,8 @@ Taikai.builder()
Taikai.builder()
.namespace("com.company.project")
.java(java -> java
.classesShouldBeAssignableTo(".*Repository", SpecificCrudRepository.class)
.classesShouldBeAssignableTo(".*Repository", "com.company.project.SpecificCrudRepository"))
.classesShouldBeAssignableTo(".*Repository", BaseRepository.class)
.classesShouldBeAssignableTo(".*Repository", "com.company.project.BaseRepository"))
.build()
.check();
```
Expand Down

0 comments on commit 52c46e4

Please sign in to comment.