diff --git a/src/main/asciidoc/reference/ldap-repositories.adoc b/src/main/asciidoc/reference/ldap-repositories.adoc index c9516219..034b92a3 100644 --- a/src/main/asciidoc/reference/ldap-repositories.adoc +++ b/src/main/asciidoc/reference/ldap-repositories.adoc @@ -152,7 +152,7 @@ The sample creates an application context with Spring's unit test support, which [[ldap.repositories.queries]] == Query Methods -Most of the data access operations you usually trigger on a repository result in a query being executed against the LDAP directory. Defining such a query is a matter of declaring a method on the repository interface, as the following example shows: +Most of the data access operations you usually trigger on a repository result in a query being run against the LDAP directory. Defining such a query is a matter of declaring a method on the repository interface, as the following example shows: .PersonRepository with query methods ==== @@ -229,7 +229,7 @@ The following table provides samples of the keywords that you can use with query Basic QueryDSL support is included in Spring LDAP. This support includes the following: * An Annotation Processor, `LdapAnnotationProcessor`, for generating QueryDSL classes based on Spring LDAP ODM annotations. See https://docs.spring.io/spring-ldap/docs/{springLdapVersion}/reference/#odm[Object-Directory Mapping] for more information on the ODM annotations. -* A Query implementation, `QueryDslLdapQuery`, for building and executing QueryDSL queries in code. +* A Query implementation, `QueryDslLdapQuery`, for building and running QueryDSL queries in code. * Spring Data repository support for QueryDSL predicates. `QueryDslPredicateExecutor` includes a number of additional methods with appropriate parameters. You can extend this interface (along with `LdapRepository`) to include this support in your repository. [[ldap.repositories.misc]]