Fix a spelling mistake

This commit is contained in:
Brett Cannon 2017-09-20 15:10:27 -07:00 committed by GitHub
parent 8e8267da41
commit cc8ae3d31d
1 changed files with 1 additions and 1 deletions

View File

@ -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 cycles (and any ancillary objects hanging at those cycles), the GC can
execute arbitrary finalization code in the form of ``__del__`` methods execute arbitrary finalization code in the form of ``__del__`` methods
and ``weakref`` callbacks. Over the years, Python has been used for more 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 finalization code to perform complex tasks, for example in distributed
systems where loss of an object may require notifying other (logical systems where loss of an object may require notifying other (logical
or physical) nodes. or physical) nodes.