From 7d58afa19bd64b1bf936afc8dc228958be166106 Mon Sep 17 00:00:00 2001 From: Allin Date: Thu, 12 Dec 2019 16:36:12 +0800 Subject: [PATCH] Fix prototype.py typo change "as it make.." to "as it makes.." --- patterns/creational/prototype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/creational/prototype.py b/patterns/creational/prototype.py index 690a6789..55af0dec 100644 --- a/patterns/creational/prototype.py +++ b/patterns/creational/prototype.py @@ -4,7 +4,7 @@ application. Instead of relying on subclasses it creates objects by copying a prototypical instance at run-time. -This is useful as it make it easier to derive new kinds of objects, +This is useful as it makes it easier to derive new kinds of objects, when instances of the class have only a few different combinations of state, and when instantiation is expensive.