Merge pull request #25 from nandeeshmp/patch-1

grammatical correction
This commit is contained in:
Dominik Liebler 2013-08-08 05:12:59 -07:00
commit 330a6dbcc3

View File

@ -8,7 +8,7 @@ namespace DesignPatterns\AbstractFactory;
* Purpose:
* to create series of related or dependant objects without specifying their concrete classes,
* usually the created classes all implement the same interface. The client of the abstract
* factory does not care about how these objects are created, he just knows they goes together.
* factory does not care about how these objects are created, he just knows they go together.
*
* Sometimes also known as "Kit" in a GUI libraries.
*