changed the grammar used to define Factory pattern

This commit is contained in:
Sydney Arikan
2012-07-27 14:05:24 +03:00
parent 66f0f13f7e
commit 003071c6b7

View File

@@ -14,7 +14,7 @@ your code easier to manage and easier for others to understand.
## Factory
One of the most commonly used design patterns is the factory pattern. This is a pattern is simply a class that creates
One of the most commonly used design patterns is the factory pattern. In this pattern, a class simply creates
the object you want to use. Consider the following example of the factory pattern:
{% highlight php %}