diff --git a/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc b/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc index 0db9cd2a2a5..f5735720ad5 100644 --- a/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc +++ b/framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc @@ -417,9 +417,9 @@ Do not pass `Collection` or the like as an array parameter. [[r2dbc-DatabaseClient-filter]] ==== Statement Filters -Sometimes it you need to fine-tune options on the actual `Statement` -before it gets run. Register a `Statement` filter -(`StatementFilterFunction`) through `DatabaseClient` to intercept and +Sometimes you need to fine-tune options on the actual `Statement` +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] ======