Skip to content

Commit 40331ea

Browse files
ryenussnicoll
authored andcommitted
Fix consecutive-word duplications in documentation
See gh-24089
1 parent 26d800c commit 40331ea

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/docs/asciidoc/core/core-aop-api.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ methods can be combined in a single class. The following listing shows the final
576576

577577
NOTE: If a throws-advice method throws an exception itself, it overrides the
578578
original exception (that is, it changes the exception thrown to the user). The overriding
579-
exception is typically a RuntimeException, which is is compatible with any method
579+
exception is typically a RuntimeException, which is compatible with any method
580580
signature. However, if a throws-advice method throws a checked exception, it must
581581
match the declared exceptions of the target method and is, hence, to some degree
582582
coupled to specific target method signatures. _Do not throw an undeclared checked

src/docs/asciidoc/rsocket.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The responder may then return `PAYLOAD` frames with response messages, and in th
7979
of `REQUEST_CHANNEL` the requester may also send `PAYLOAD` frames with more request
8080
messages.
8181

82-
When a request involves a stream of messages such as as `Request-Stream` and `Channel`,
82+
When a request involves a stream of messages such as `Request-Stream` and `Channel`,
8383
the responder must respect demand signals from the requester. Demand is expressed as a
8484
number of messages. Initial demand is specified in `REQUEST_STREAM` and
8585
`REQUEST_CHANNEL` frames. Subsequent demand is signaled via `REQUEST_N` frames.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ or, in the case of a `Resource`, based on the file extension. If necessary, you
662662
explicitly provide the `MediaType` to use for each part through one of the overloaded
663663
builder `part` methods.
664664

665-
Once a `MultiValueMap` is prepared, the easiest way to pass it to the the `WebClient` is
665+
Once a `MultiValueMap` is prepared, the easiest way to pass it to the `WebClient` is
666666
through the `body` method, as the following example shows:
667667

668668
[source,java,indent=0,subs="verbatim,quotes",role="primary"]

src/docs/asciidoc/web/webflux.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ when consumed to avoid memory leaks.
868868
WebFlux applications generally do not need to be concerned with such issues, unless they
869869
consume or produce data buffers directly, as opposed to relying on codecs to convert to
870870
and from higher level objects, or unless they choose to create custom codecs. For such
871-
cases please review the the information in <<core#databuffers, Data Buffers and Codecs>>,
871+
cases please review the information in <<core#databuffers, Data Buffers and Codecs>>,
872872
especially the section on <<core#databuffers-using, Using DataBuffer>>.
873873

874874

src/docs/asciidoc/web/webmvc-view.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ the `WEB-INF/defs` directory. At initialization of the `WebApplicationContext`,
17161716
files are loaded, and the definitions factory are initialized. After that has
17171717
been done, the Tiles included in the definition files can be used as views within your
17181718
Spring web application. To be able to use the views, you have to have a `ViewResolver`
1719-
as with any other view technology used with Spring. You can can use either of two
1719+
as with any other view technology used with Spring. You can use either of two
17201720
implementations, the `UrlBasedViewResolver` and the `ResourceBundleViewResolver`.
17211721

17221722
You can specify locale-specific Tiles definitions by adding an underscore and then

src/docs/asciidoc/web/webmvc.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3739,7 +3739,7 @@ level, <<mvc-exceptionhandlers, HandlerExceptionResolver>> mechanism.
37393739

37403740
| `javax.servlet.ServletRequest`, `javax.servlet.ServletResponse`
37413741
| Choose any specific request or response type (for example, `ServletRequest` or
3742-
`HttpServletRequest` or or Spring's `MultipartRequest` or `MultipartHttpServletRequest`).
3742+
`HttpServletRequest` or Spring's `MultipartRequest` or `MultipartHttpServletRequest`).
37433743

37443744
| `javax.servlet.http.HttpSession`
37453745
| Enforces the presence of a session. As a consequence, such an argument is never `null`. +
@@ -4284,7 +4284,7 @@ as the following example shows:
42844284
}
42854285
----
42864286

4287-
The return value can then be obtained by running the the given task through the
4287+
The return value can then be obtained by running the given task through the
42884288
<<mvc-ann-async-configuration-spring-mvc, configured>> `TaskExecutor`.
42894289

42904290

0 commit comments

Comments
 (0)