From ff7e679437d46f27599e159b6be8e63d5c79c899 Mon Sep 17 00:00:00 2001 From: ParamountSoft Date: Tue, 1 Jul 2014 22:02:40 +0200 Subject: [PATCH] Update README.md --- Creational/Prototype/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Creational/Prototype/README.md b/Creational/Prototype/README.md index 3a99777..5ac8ca5 100644 --- a/Creational/Prototype/README.md +++ b/Creational/Prototype/README.md @@ -2,8 +2,8 @@ ## Purpose -To avoid the cost of creating objects the standard way (new Foo()) and instead create a prototype and clone it +To avoid the cost of creating objects the standard way (new Foo()) and instead create a prototype and clone it. ## Examples -* Large amounts of data (e.g. create 1,000,000 rows in a database at once via a ORM) +* Large amounts of data (e.g. create 1,000,000 rows in a database at once via a ORM).