From 1fe9aaeefa3f9458c25849f77428502e4da1dab5 Mon Sep 17 00:00:00 2001 From: Franziska Sauerwein Date: Fri, 4 Mar 2016 09:09:50 +0530 Subject: [PATCH] #157 - 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 935fe377..5120a21e 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.