diff --git a/Creational/SimpleFactory/README.rst b/Creational/SimpleFactory/README.rst index 3ef9f0e..147bd57 100644 --- a/Creational/SimpleFactory/README.rst +++ b/Creational/SimpleFactory/README.rst @@ -7,7 +7,9 @@ Purpose SimpleFactory is a simple factory pattern. It differs from the static factory because it is not static. + Therefore, you can have multiple factories, differently parametrized, you can subclass it and you can mock it. + It always should be preferred over a static factory! UML Diagram