From 1ba87c8d08dac4a864574680ddd1c8540980937e Mon Sep 17 00:00:00 2001 From: Alec Landow Date: Mon, 7 Sep 2020 22:34:47 -0400 Subject: [PATCH] DATACMNS-1792 - Fixes typos. Fixes typos in in commons/repositories documentation. Original pull request: #466. --- src/main/asciidoc/repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/repositories.adoc b/src/main/asciidoc/repositories.adoc index 6d5b67340..5b7607525 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -621,7 +621,7 @@ NOTE: Limiting the results in combination with dynamic sorting by using a `Sort` [[repositories.query-streaming]] === Streaming Query Results -You can process the results of query methods incrementally by using a Java 8 `Stream` as the return type. Instead of wrapping the query results in a `Stream` data store-specific methods are used to perform the streaming, as shown in the following example: +You can process the results of query methods incrementally by using a Java 8 `Stream` as the return type. Instead of wrapping the query results in a `Stream`, data store-specific methods are used to perform the streaming, as shown in the following example: .Stream the result of a query with Java 8 `Stream` ====