Polishing

See gh-30482
This commit is contained in:
Sam Brannen
2023-05-15 15:07:24 +02:00
parent 169795d673
commit 2738b3e50f

View File

@@ -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]
@@ -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]
======