Skip to content

Commit 142496c

Browse files
Jay Bryantrwinch
Jay Bryant
authored andcommitted
Wording changes
Replacing some terms
1 parent 4ebad0a commit 142496c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/docs/asciidoc/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Spring LDAP is designed to simplify LDAP programming in Java. Some of the featur
4747
=== Traditional Java LDAP versus `LdapTemplate`
4848

4949
Consider a method that should search some storage for all persons and return their names in a list.
50-
By using JDBC, we would create a _connection_ and execute a _query_ by using a _statement_. We would then loop over the _result set_ and retrieve the _column_ we want, adding it to a list.
50+
By using JDBC, we would create a _connection_ and run a _query_ by using a _statement_. We would then loop over the _result set_ and retrieve the _column_ we want, adding it to a list.
5151

5252
Working against an LDAP database with JNDI, we would create a _context_ and perform a _search_ by using a _search filter_. We would then loop over the resulting _naming enumeration_, retrieve the _attribute_ we want, and add it to a list.
5353

@@ -1663,7 +1663,7 @@ Basic QueryDSL support is included in Spring LDAP. This support includes the fol
16631663

16641664
* An annotation processor, called `LdapAnnotationProcessor`, for generating QueryDSL classes based on Spring LDAP ODM annotations. See <<odm>> for more information on the ODM annotations.
16651665

1666-
* A Query implementation, called `QueryDslLdapQuery`, for building and executing QueryDSL queries in code.
1666+
* A Query implementation, called `QueryDslLdapQuery`, for building and running QueryDSL queries in code.
16671667

16681668
* 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.
16691669

@@ -2015,7 +2015,7 @@ NOTE: When you use the `ContextMapperCallbackHandler`, you must make sure that y
20152015

20162016
=== Implementing Other Custom Context Methods
20172017

2018-
In the same manner as for custom `search` methods, you can actually execute any method in `DirContext` by using a `ContextExecutor`, as follows:
2018+
In the same manner as for custom `search` methods, you can actually call any method in `DirContext` by using a `ContextExecutor`, as follows:
20192019

20202020
====
20212021
[source,java]

0 commit comments

Comments
 (0)