diff --git a/jpa/multiple-datasources/README.md b/jpa/multiple-datasources/README.md index 935fe377e..5120a21e1 100644 --- a/jpa/multiple-datasources/README.md +++ b/jpa/multiple-datasources/README.md @@ -4,4 +4,4 @@ This project contains an example of how to set up Spring Data to work with two i ## Interesting points to look at -Two connect to two databases we need to manually configure a `DataSource`, `EntityManagerFactory` and `JpaTransactionManager`. This is done in `CustomerConfig` and `OrderConfig`. `DataInitializer` then simulates a Spring component interacting with those databases in separate methods. `Application.init()` orchestrates calls to those methods. +To connect to two databases we need to manually configure a `DataSource`, `EntityManagerFactory` and `JpaTransactionManager`. This is done in `CustomerConfig` and `OrderConfig`. `DataInitializer` then simulates a Spring component interacting with those databases in separate methods. `Application.init()` orchestrates calls to those methods.