diff --git a/trio_asyncio/_base.py b/trio_asyncio/_base.py index 0540bb7..97f9a9e 100644 --- a/trio_asyncio/_base.py +++ b/trio_asyncio/_base.py @@ -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):