Skip to content

Commit

Permalink
docs: remove unsupported method
Browse files Browse the repository at this point in the history
  • Loading branch information
shouwn committed Sep 8, 2023
1 parent 96816e9 commit 9405b97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/jpql-with-kotlin-jdsl/spring-supports.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ If your `JpaRepository` extends `KotlinJdslJpqlExecutor`, you can use the extens
interface AuthorRepository : JpaRepository<Author, Long>, KotlinJdslJpqlExecutor
interface BookRepository : JpaRepository<Book, Isbn>, KotlinJdslJpqlExecutor

authorRepository.findFirst {
authorRepository.findAll {
select(
path(Author::authorId),
).from(
Expand Down
2 changes: 1 addition & 1 deletion docs/ko/jpql-with-kotlin-jdsl/spring-supports.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Kotlin JDSL은 Spring Boot AutoConfigure를 지원합니다.
interface AuthorRepository : JpaRepository<Author, Long>, KotlinJdslJpqlExecutor
interface BookRepository : JpaRepository<Book, Isbn>, KotlinJdslJpqlExecutor

authorRepository.findFirst {
authorRepository.findAll {
select(
path(Author::authorId),
).from(
Expand Down

0 comments on commit 9405b97

Please sign in to comment.