some more comments, typos etc.

This commit is contained in:
Dominik Liebler
2011-08-23 11:52:46 +02:00
parent 758daca9fa
commit 1f37ca385f
7 changed files with 15 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ namespace DesignPatterns;
* Prototype pattern
*
* Purpose:
* to avoid the 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)