Fixes raw use of JpaSpecificationExecutor in docs.

`JpaSpecificationExecutor` was being used without a type being specified. This commit fixes that.

Original pull request #2159
This commit is contained in:
Ryan Cloherty
2021-02-19 16:48:29 -05:00
committed by Jens Schauder
parent 5517570ca8
commit aa5f7f8661

View File

@@ -789,7 +789,7 @@ Spring Data JPA takes the concept of a specification from Eric Evans' book, "`Do
[source, java]
----
public interface CustomerRepository extends CrudRepository<Customer, Long>, JpaSpecificationExecutor {
public interface CustomerRepository extends CrudRepository<Customer, Long>, JpaSpecificationExecutor<Customer> {
}
----