From 23e13762da9093b1a3b9b71b45ffcf302bf99beb Mon Sep 17 00:00:00 2001 From: Gabriel Bull Date: Sun, 15 Jun 2014 19:52:35 -0400 Subject: [PATCH] Corrected typo --- Creational/SimpleFactory/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Creational/SimpleFactory/README.md b/Creational/SimpleFactory/README.md index 5bb2af6..c165dc5 100644 --- a/Creational/SimpleFactory/README.md +++ b/Creational/SimpleFactory/README.md @@ -6,4 +6,4 @@ ConcreteFactory is a simple factory pattern. It differs from the static factory because it is NOT static and as you know: static => global => evil! -Therefore, you can haZ multiple factories, differently parametrized, you can subclass it and you can mock-up it. +Therefore, you can have multiple factories, differently parametrized, you can subclass it and you can mock-up it.