Skip to content

Commit 02dd56a

Browse files
authored
Merge pull request #394 from timgates42/bugfix_typo_assigning
docs: fix simple typo, assigining -> assigning
2 parents 8541f98 + aa357ee commit 02dd56a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patterns/creational/borg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
its own dictionary, but the Borg pattern modifies this so that all
1414
instances have the same dictionary.
1515
In this example, the __shared_state attribute will be the dictionary
16-
shared between all instances, and this is ensured by assigining
16+
shared between all instances, and this is ensured by assigning
1717
__shared_state to the __dict__ variable when initializing a new
1818
instance (i.e., in the __init__ method). Other attributes are usually
1919
added to the instance's attribute dictionary, but, since the attribute

0 commit comments

Comments
 (0)