Skip to content

Commit

Permalink
fix thsi docstring typo
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert authored Feb 8, 2022
1 parent 308dd76 commit d7395e9
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 @@ -593,7 +593,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 d7395e9

Please sign in to comment.