From 8b991782276f45eff62f1d45ad5d8040ebd26127 Mon Sep 17 00:00:00 2001 From: Lyam Hunt <86940809+lnhunt11@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:37:09 -0700 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7c859bd47..4b97385376 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Spring Integration’s primary goal is to provide a simple model for building en Using the Spring Framework encourages developers to code using interfaces and use dependency injection (DI) to provide a Plain Old Java Object (POJO) with the dependencies it needs to perform its tasks. Spring Integration takes this concept one step further, where POJOs are wired together using a messaging paradigm and individual components may not be aware of other components in the application. Such an application is built by assembling fine-grained reusable components to form a higher level of functionality. -WIth careful design, these flows can be modularized and also reused at an even higher level. +With careful design, these flows can be modularized and also reused at an even higher level. In addition to wiring together fine-grained components, Spring Integration provides a wide selection of channel adapters and gateways to communicate with external systems. Channel Adapters are used for one-way integration (send or receive); gateways are used for request/reply scenarios (inbound or outbound).