From cc8ae3d31dcecec0d6757efe0e42657ef60c528b Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 20 Sep 2017 15:10:27 -0700 Subject: [PATCH] Fix a spelling mistake --- pep-0556.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0556.rst b/pep-0556.rst index d3037b418..6440b0fda 100644 --- a/pep-0556.rst +++ b/pep-0556.rst @@ -49,7 +49,7 @@ There is a catch, though. Over the course of reclaiming dead reference cycles (and any ancillary objects hanging at those cycles), the GC can execute arbitrary finalization code in the form of ``__del__`` methods and ``weakref`` callbacks. Over the years, Python has been used for more -and more sophisticated purposes, and it is increasinly common for +and more sophisticated purposes, and it is increasingly common for finalization code to perform complex tasks, for example in distributed systems where loss of an object may require notifying other (logical or physical) nodes.