From b5eca2f85699426e5050492dcd55dd0427e130e4 Mon Sep 17 00:00:00 2001 From: Piyush Chaudhari Date: Wed, 27 Sep 2017 00:04:06 +0530 Subject: [PATCH] #352- Unit Of Work : Updated applicability of pattern in 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 b33ab9781..25b96153f 100644 --- a/unit-of-work/README.md +++ b/unit-of-work/README.md @@ -23,7 +23,7 @@ Use the Unit Of Work pattern when * 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. +* To reduce number of database calls. ## Credits