Skip to content

Commit

Permalink
Merge pull request #114 from python-trio/graingert-patch-1
Browse files Browse the repository at this point in the history
fix thsi docstring typo
  • Loading branch information
A5rocks authored Nov 7, 2023
2 parents 7b673d4 + c1bafb9 commit c083583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trio_asyncio/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ def no_autoclose(self, fd):
# drop all file descriptors, optionally close them

def _cancel_fds(self):
"""Clean up all of thsi loop's open read or write requests"""
"""Clean up all of this loop's open read or write requests"""
for fd, key in list(self._selector.get_map().items()):
for flag in (0, 1):
if key.events & (1 << flag):
Expand Down

0 comments on commit c083583

Please sign in to comment.