Skip to content

Commit 9759950

Browse files
committed
spring-projectsGH-3699: Fix typos in the IntegrationFlow javadoc
Fixes spring-projects#3699
1 parent 30622b2 commit 9759950

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-integration-core/src/main/java/org/springframework/integration/dsl/IntegrationFlow.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* <p>
2626
* The {@link StandardIntegrationFlow} implementation (produced by {@link IntegrationFlowBuilder})
2727
* represents a container for the integration components, which will be registered
28-
* in the application context. Typically is used as a {@code @Bean} definition:
28+
* in the application context. Typically, is used as a {@code @Bean} definition:
2929
* <pre class="code">
3030
* &#64;Bean
3131
* public IntegrationFlow fileReadingFlow() {
@@ -47,12 +47,12 @@
4747
* .subFlowMapping(true, sf -&gt; sf.&lt;Integer&gt;handle((p, h) -&gt; p * 2))
4848
* .subFlowMapping(false, sf -&gt; sf.&lt;Integer&gt;handle((p, h) -&gt; p * 3)))
4949
* .aggregate()
50-
* .channel(MessageChannels..queue("routerTwoSubFlowsOutput"));
50+
* .channel(MessageChannels.queue("routerTwoSubFlowsOutput"));
5151
* }
5252
*
5353
* </pre>
5454
* <p>
55-
* Also this interface can be implemented directly to encapsulate the integration logic
55+
* Also, this interface can be implemented directly to encapsulate the integration logic
5656
* in the target service:
5757
* <pre class="code">
5858
* &#64;Component
@@ -86,7 +86,7 @@ public interface IntegrationFlow {
8686

8787
/**
8888
* Return the first {@link MessageChannel} component
89-
* which is essential a flow input channel.
89+
* which is essentially a flow input channel.
9090
* @return the channel.
9191
* @since 5.0.4
9292
*/

0 commit comments

Comments
 (0)