From dc905e79dd9105c0f5fa83da5f87eebbb923da3c Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 17 Mar 2020 10:05:22 +0100 Subject: [PATCH] DATACMNS-1684 - Fix grammar in reference documentation. --- src/main/asciidoc/query-by-example.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/query-by-example.adoc b/src/main/asciidoc/query-by-example.adoc index 073f8fd72..c968f55a3 100644 --- a/src/main/asciidoc/query-by-example.adoc +++ b/src/main/asciidoc/query-by-example.adoc @@ -63,7 +63,7 @@ Example example = Example.of(person); <3> <3> Create the `Example`. ==== -Examples are ideally be executed with repositories. To do so, let your repository interface extend `QueryByExampleExecutor`. The following listing shows an excerpt from the `QueryByExampleExecutor` interface: +Example queries can be executed by using repositories. To do so, let your repository interface extend `QueryByExampleExecutor`. The following listing shows an excerpt from the `QueryByExampleExecutor` interface: .The `QueryByExampleExecutor` ====