Skip to content

Commit 674bad0

Browse files
Jay Bryantsbrannen
authored andcommitted
Wording changes
Replace potentially insensitive language with more neutral language. See gh-25314
1 parent 3d64f81 commit 674bad0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/docs/asciidoc/data-access.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6619,7 +6619,7 @@ You can customize the client by calling the following methods:
66196619
* `….bindMarkers(…)`: Supply a specific `BindMarkersFactory` to configure named
66206620
parameter to database bind marker translation.
66216621
* `….executeFunction(…)`: Set the `ExecuteFunction` how `Statement` objects get
6622-
executed.
6622+
run.
66236623
* `….namedParameters(false)`: Disable named parameter expansion. Enabled by default.
66246624

66256625
TIP: Dialects are resolved by {api-spring-framework}/r2dbc/core/binding/BindMarkersFactoryResolver.html[`BindMarkersFactoryResolver`]
@@ -6804,7 +6804,7 @@ input parameters. Parameterized statements bear the risk of SQL injection if
68046804
parameters are not escaped properly. `DatabaseClient` leverages R2DBC's
68056805
`bind` API to eliminate the risk of SQL injection for query parameters.
68066806
You can provide a parameterized SQL statement with the `execute(…)` operator
6807-
and bind parameters to the actual `Statement`. Your R2DBC driver then executes
6807+
and bind parameters to the actual `Statement`. Your R2DBC driver then runs
68086808
the statement by using prepared statements and parameter substitution.
68096809

68106810
Parameter binding supports two binding strategies:
@@ -6853,7 +6853,7 @@ Consider the following query:
68536853
SELECT id, name, state FROM table WHERE (name, age) IN (('John', 35), ('Ann', 50))
68546854
----
68556855

6856-
The preceding query can be parametrized and executed as follows:
6856+
The preceding query can be parametrized and run as follows:
68576857

68586858
[source,java,indent=0,subs="verbatim,quotes",role="primary"]
68596859
.Java
@@ -6901,7 +6901,7 @@ The following example shows a simpler variant using `IN` predicates:
69016901
===== Statement Filters
69026902

69036903
Sometimes it you need to fine-tune options on the actual `Statement`
6904-
before it gets executed. Register a `Statement` filter
6904+
before it gets run. Register a `Statement` filter
69056905
(`StatementFilterFunction`) through `DatabaseClient` to intercept and
69066906
modify statements in their execution, as the following example shows:
69076907

@@ -6943,7 +6943,7 @@ modify statements in their execution, as the following example shows:
69436943
.filter { statement -> s.fetchSize(25) }
69446944
----
69456945

6946-
`StatementFilterFunction` implementations allow filtering of the executed
6946+
`StatementFilterFunction` implementations allow filtering of the
69476947
`Statement` and filtering of `Result` objects.
69486948

69496949
[[r2dbc-DatabaseClient-idioms]]
@@ -7089,7 +7089,7 @@ necessarily have to know how the production data source is configured.
70897089

70907090
When you use Spring's R2DBC layer, you can can configure your own with a
70917091
connection pool implementation provided by a third party. A popular
7092-
implementation is R2DBC Pool (`r2dbc-pool`). Implementations in the Spring
7092+
implementation is R2DBC Pool (`r2dbc-pool`). Implementations in the Spring
70937093
distribution are meant only for testing purposes and do not provide pooling.
70947094

70957095
To configure a `ConnectionFactory`:
@@ -7162,7 +7162,7 @@ javadoc for more details.
71627162

71637163
The `R2dbcTransactionManager` class is a `ReactiveTransactionManager` implementation for
71647164
single R2DBC datasources. It binds an R2DBC connection from the specified connection factory
7165-
to the subscriber `Context`, potentially allowing for one subscriber connection for each
7165+
to the subscriber `Context`, potentially allowing for one subscriber connection for each
71667166
connection factory.
71677167

71687168
Application code is required to retrieve the R2DBC connection through

0 commit comments

Comments
 (0)