From 3a3937f339daca05b907461b98cd28099fcd7685 Mon Sep 17 00:00:00 2001 From: Trismegiste Date: Fri, 10 May 2013 21:49:22 +0200 Subject: [PATCH] typo --- StaticFactory/StaticFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StaticFactory/StaticFactory.php b/StaticFactory/StaticFactory.php index fb5a12c..aa32d43 100644 --- a/StaticFactory/StaticFactory.php +++ b/StaticFactory/StaticFactory.php @@ -7,7 +7,7 @@ namespace DesignPatterns\StaticFactory; * * Purpose: * similar to the AbstractFactory, this pattern is used to create series of related or dependant objects. - * The difference between this and the abstract factory pattern is that the factory method pattern uses just one static + * The difference between this and the abstract factory pattern is that the static factory pattern uses just one static * method to create all types of objects it can create. It is usually named "factory" or "build". * * Examples: