Skip to content

Commit 5c0ddf3

Browse files
izeyesbrannen
authored andcommitted
Polishing
1 parent 1b98d09 commit 5c0ddf3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

spring-context/src/main/java/org/springframework/context/annotation/Configuration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
*
121121
* Externalized values may be looked up by injecting the Spring
122122
* {@link org.springframework.core.env.Environment} into a {@code @Configuration}
123-
* class the usual (e.g. using the {@code @Autowired} annotation):
123+
* class as usual (e.g. using the {@code @Autowired} annotation):
124124
*
125125
* <pre class="code">
126126
* &#064;Configuration
@@ -138,8 +138,8 @@
138138
*
139139
* Properties resolved through the {@code Environment} reside in one or more "property
140140
* source" objects, and {@code @Configuration} classes may contribute property sources to
141-
* the {@code Environment} object using
142-
* the {@link org.springframework.core.env.PropertySources @PropertySources} annotation:
141+
* the {@code Environment} object using the {@link PropertySource @PropertySource}
142+
* annotation:
143143
*
144144
* <pre class="code">
145145
* &#064;Configuration

src/docs/asciidoc/integration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2386,7 +2386,7 @@ configured locally as depicted in the following example.
23862386
----
23872387

23882388
The specified `WorkManager` may also point to an environment-specific thread pool -
2389-
typically through `SimpleTaskWorkManager's` "asyncTaskExecutor" property. Consider
2389+
typically through ``SimpleTaskWorkManager``'s "asyncTaskExecutor" property. Consider
23902390
defining a shared thread pool for all your `ResourceAdapter` instances if you happen to
23912391
use multiple adapters.
23922392

src/docs/asciidoc/web/webflux.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2598,8 +2598,8 @@ You can use `ResourceUrlProvider` to rewrite URLs and apply the full chain of re
25982598
transformers -- e.g. to insert versions. The WebFlux config provides a `ResourceUrlProvider`
25992599
so it can be injected into others.
26002600

2601-
Unlike Spring MVC at present in WebFlux there is no way to transparely rewrite static
2602-
resource URLs since the are no view technologies that can make use of a non-blocking chain
2601+
Unlike Spring MVC at present in WebFlux there is no way to transparently rewrite static
2602+
resource URLs since there are no view technologies that can make use of a non-blocking chain
26032603
of resolvers and transformers (e.g. resources on Amazon S3). When serving only local
26042604
resources the workaround is to use `ResourceUrlProvider` directly (e.g. through a custom
26052605
tag) and block for 0 seconds.

0 commit comments

Comments
 (0)