From c5d46a9682caa6ca16e84ac1f17ecd0cef6df1e0 Mon Sep 17 00:00:00 2001 From: Sanghyuk Jung Date: Sat, 25 Jul 2026 14:33:06 +0900 Subject: [PATCH] Remove duplicated "the" Signed-off-by: Sanghyuk Jung --- jdbc/basics/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdbc/basics/README.adoc b/jdbc/basics/README.adoc index 94b0af2b1..0a7f052a8 100644 --- a/jdbc/basics/README.adoc +++ b/jdbc/basics/README.adoc @@ -20,7 +20,7 @@ This example demonstrates various ways to bend what the standard mapping of Spri * The `minimumAge` and `maximumAge` properties show a way to use types which don't have direct mapping to a SQL type, by marking them with `@Transient` and having converted properties for Spring Data JDBC to use. -* The `models` attribute demonstrate mapping of a `Map`. It does work out of the box, but in this case the the key of the map should be one attribute of the entity. +* The `models` attribute demonstrate mapping of a `Map`. It does work out of the box, but in this case the key of the map should be one attribute of the entity. This is achieved by providing a custom `NamingStrategy` which maps both to the same database column. * When the database returns a data type for query which Spring Data JDBC doesn't map out of the box a custom conversion can be registered using a `ConversionCustomizer` as demonstrated in `AggregateContext.conversionCustomizer()`.