#429 - Fix typos in reference documentation.

This commit is contained in:
Oh SeungMok
2020-08-10 16:11:42 +09:00
committed by Mark Paluch
parent 7bf9ea7156
commit 18676b09ea
2 changed files with 2 additions and 2 deletions

View File

@@ -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.

View File

@@ -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`