From dbdb4d4e8de6d1b100e463881985507fc7e46645 Mon Sep 17 00:00:00 2001 From: JuHyeong Ahn Date: Thu, 22 Jun 2023 16:44:00 +0900 Subject: [PATCH] Fix typo in Using R2DBC See gh-36019 --- .../spring-boot-docs/src/docs/asciidoc/data/sql.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc index a16d6c45fd3..067b086468c 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc @@ -451,7 +451,7 @@ Information specified in the URL takes precedence over individual properties, th TIP: The "`How-to`" section includes a <>. To customize the connections created by a `ConnectionFactory`, that is, set specific parameters that you do not want (or cannot) configure in your central database configuration, you can use a `ConnectionFactoryOptionsBuilderCustomizer` `@Bean`. -The following example shows how to manually override the database port while the rest of the options is taken from the application configuration: +The following example shows how to manually override the database port while the rest of the options are taken from the application configuration: include::code:MyR2dbcConfiguration[]