From 3f019ad1c23869bbe237e369a5f5975ba2217b94 Mon Sep 17 00:00:00 2001 From: "Guoliang (Gavin) Liu" Date: Tue, 10 Apr 2018 14:41:40 -0400 Subject: [PATCH] Typo? --- creational/abstract_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.