Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen authored and mdeinum committed Jun 29, 2023
1 parent 917888d commit 7cf18f5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions framework-docs/modules/ROOT/pages/data-access/r2dbc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ Do not pass `Collection<String>` 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]
Expand All @@ -445,7 +445,8 @@ Kotlin::
----
======

`DatabaseClient` exposes also simplified `filter(…)` overload accepting `Function<Statement, Statement>`:
`DatabaseClient` also exposes a simplified `filter(…)` overload that accepts
a `Function<Statement, Statement>`:

[tabs]
======
Expand Down

0 comments on commit 7cf18f5

Please sign in to comment.