File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
spring-integration-core/src/main/java/org/springframework/integration/dsl Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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 * @Bean
3131 * public IntegrationFlow fileReadingFlow() {
4747 * .subFlowMapping(true, sf -> sf.<Integer>handle((p, h) -> p * 2))
4848 * .subFlowMapping(false, sf -> sf.<Integer>handle((p, h) -> 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 * @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 */
You can’t perform that action at this time.
0 commit comments