From cc9d25d7c608713850c7de8b1253f586ac1596e5 Mon Sep 17 00:00:00 2001 From: Franziska Sauerwein Date: Fri, 4 Mar 2016 09:09:50 +0530 Subject: [PATCH] Fix Typo in readme Two -> To --- jpa/multiple-datasources/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.