Skip to content

Commit 1a839f5

Browse files
simonbaslesbrannen
authored andcommitted
Fix typos in reference manual
Closes gh-29694
1 parent 8df4f92 commit 1a839f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6850,7 +6850,7 @@ Without specifying further mapping details, queries return tabular results
68506850
as `Map` whose keys are case-insensitive column names that map to their column value.
68516851

68526852
You can take control over result mapping by supplying a `Function<Row, T>` that gets
6853-
called for each `Row` so it can can return arbitrary values (singular values,
6853+
called for each `Row` so it can return arbitrary values (singular values,
68546854
collections and maps, and objects).
68556855

68566856
The following example extracts the `name` column and emits its value:
@@ -7212,7 +7212,7 @@ responsibility of the administrator who sets up the `ConnectionFactory`. You
72127212
most likely fill both roles as you develop and test code, but you do not
72137213
necessarily have to know how the production data source is configured.
72147214

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ A `HandlerAdapter` may expose its exception handling mechanism as a
11751175
`DispatchExceptionHandler` set on the `HandlerResult` it returns. When that's set,
11761176
`DispatcherHandler` will also apply it to the handling of the result.
11771177

1178-
A `HandlerAdapter` may also choose to implement `DispatchExceptionHandler`. Inn that case
1178+
A `HandlerAdapter` may also choose to implement `DispatchExceptionHandler`. In that case
11791179
`DispatcherHandler` will apply it to exceptions that arise before a handler is mapped,
11801180
e.g. during handler mapping, or earlier, e.g. in a `WebFilter`.
11811181

0 commit comments

Comments
 (0)