Skip to content

Commit c083583

Browse files
authored
Merge pull request #114 from python-trio/graingert-patch-1
fix thsi docstring typo
2 parents 7b673d4 + c1bafb9 commit c083583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trio_asyncio/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ def no_autoclose(self, fd):
604604
# drop all file descriptors, optionally close them
605605

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

0 commit comments

Comments
 (0)