From b8491436dde5f68dd3f1043393ea26d1376997ec Mon Sep 17 00:00:00 2001 From: Piyush Chaudhari Date: Tue, 26 Sep 2017 23:25:36 +0530 Subject: [PATCH] #352- Unit Of Work : modified readme. --- unit-of-work/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit-of-work/README.md b/unit-of-work/README.md index 20788279d..b33ab9781 100644 --- a/unit-of-work/README.md +++ b/unit-of-work/README.md @@ -21,7 +21,7 @@ When a business transaction is completed all the these updates are sent as one ## Applicability Use the Unit Of Work pattern when -* The client is asking to optimize the time taken for database transactions. +* To optimize the time taken for database transactions. * To send changes to database as a unit of work which ensures atomicity of the transaction. * You want to reduce number of database calls.