From 18676b09eaaf813dbf5148f2b1ecd28764d9109b Mon Sep 17 00:00:00 2001 From: Oh SeungMok Date: Mon, 10 Aug 2020 16:11:42 +0900 Subject: [PATCH] #429 - Fix typos in reference documentation. --- src/main/asciidoc/reference/r2dbc-connections.adoc | 2 +- src/main/asciidoc/reference/r2dbc-repositories.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/asciidoc/reference/r2dbc-connections.adoc b/src/main/asciidoc/reference/r2dbc-connections.adoc index 41211209..6547361b 100644 --- a/src/main/asciidoc/reference/r2dbc-connections.adoc +++ b/src/main/asciidoc/reference/r2dbc-connections.adoc @@ -19,7 +19,7 @@ As a developer, you need not know details about how to connect to the database. That is the responsibility of the administrator who sets up the `ConnectionFactory`. You most likely fill both roles as you develop and test code, but you do not necessarily have to know how the production data source is configured. -When you use Spring's R2DBC layer, you can can configure your own with a connection pool implementation provided by a third party. +When you use Spring's R2DBC layer, you can configure your own with a connection pool implementation provided by a third party. A popular implementation is R2DBC `Pool`. Implementations in the Spring distribution are meant only for testing purposes and do not provide pooling. diff --git a/src/main/asciidoc/reference/r2dbc-repositories.adoc b/src/main/asciidoc/reference/r2dbc-repositories.adoc index 115133e3..d50f02f7 100644 --- a/src/main/asciidoc/reference/r2dbc-repositories.adoc +++ b/src/main/asciidoc/reference/r2dbc-repositories.adoc @@ -179,7 +179,7 @@ The following table shows the keywords that are supported for query methods: | `age BETWEEN from AND to` | `NotBetween` -| `findByAgeBetween(int from, int to)` +| `findByAgeNotBetween(int from, int to)` | `age NOT BETWEEN from AND to` | `In`