From 2738b3e50f1ae4125245aab82d8eb51e9103556d Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 15 May 2023 15:07:24 +0200 Subject: [PATCH] Polishing See gh-30482 --- framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc b/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc index 468c74ad4f..f5735720ad 100644 --- a/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc @@ -418,8 +418,8 @@ Do not pass `Collection` or the like as an array parameter. ==== Statement Filters Sometimes you need to fine-tune options on the actual `Statement` -before it gets run. Register a `Statement` filter -(`StatementFilterFunction`) through `DatabaseClient` to intercept and +before it gets run. To do so, register a `Statement` filter +(`StatementFilterFunction`) with the `DatabaseClient` to intercept and modify statements in their execution, as the following example shows: [tabs] @@ -445,7 +445,8 @@ Kotlin:: ---- ====== -`DatabaseClient` exposes also simplified `filter(…)` overload accepting `Function`: +`DatabaseClient` also exposes a simplified `filter(…)` overload that accepts +a `Function`: [tabs] ======