diff --git a/creational/abstract_factory.py b/creational/abstract_factory.py index 6c781b86..9ba51a30 100644 --- a/creational/abstract_factory.py +++ b/creational/abstract_factory.py @@ -11,7 +11,7 @@ The idea is to abstract the creation of objects depending on business logic, platform choice, etc. -In Python, we interface we use is simply a callable, which is "builtin" interface +In Python, the interface we use is simply a callable, which is "builtin" interface in Python, and in normal circumstances we can simply use the class itself as that callable, because classes are first class objects in Python.