Skip to content

Commit d2b54e2

Browse files
committed
Remove duplicate words in reference manual
Found using regular expression: \b(\w+)\s+\1\b
1 parent f8a58f2 commit d2b54e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

framework-docs/src/docs/asciidoc/data-access.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6825,7 +6825,7 @@ The following query uses a bind variable:
68256825
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
68266826
.Kotlin
68276827
----
6828-
val first = client.sql("SELECT id, name FROM person WHERE WHERE first_name = :fn")
6828+
val first = client.sql("SELECT id, name FROM person WHERE first_name = :fn")
68296829
.bind("fn", "Joe")
68306830
.fetch().awaitSingle()
68316831
----

framework-docs/src/docs/asciidoc/web/webflux.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ another `HttpMessageReader` for the actual parsing to a `Flux<Part>` and then si
810810
collects the parts into a `MultiValueMap`.
811811
By default, the `DefaultPartHttpMessageReader` is used, but this can be changed through the
812812
`ServerCodecConfigurer`.
813-
For more information about the `DefaultPartHttpMessageReader`, refer to to the
813+
For more information about the `DefaultPartHttpMessageReader`, refer to the
814814
{api-spring-framework}/http/codec/multipart/DefaultPartHttpMessageReader.html[javadoc of `DefaultPartHttpMessageReader`].
815815

816816
On the server side where multipart form content may need to be accessed from multiple

0 commit comments

Comments
 (0)