From: Laurent Tréguier Date: Fri, 16 Apr 2021 17:41:19 +0000 (+0200) Subject: Fix small comment typo (#2112) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/9eb29a6d4733c0e467ba5c1c54361f097cc1c305?ds=inline;pf=etc Fix small comment typo (#2112) We probably don't need to fall back on "polling" when setting up an asyncio loop --- diff --git a/src/black/__init__.py b/src/black/__init__.py index 3671647..bb8f8c7 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -784,7 +784,7 @@ def reformat_many( except (ImportError, OSError): # we arrive here if the underlying system does not support multi-processing # like in AWS Lambda or Termux, in which case we gracefully fallback to - # a ThreadPollExecutor with just a single worker (more workers would not do us + # a ThreadPoolExecutor with just a single worker (more workers would not do us # any good due to the Global Interpreter Lock) executor = ThreadPoolExecutor(max_workers=1)