From e76eefb8be7cce03d3002c2c69889924ede4a80d Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Tue, 9 Nov 2021 22:00:33 +0000 Subject: [PATCH] Fix miscellaneous spelling/formatting --- .ci/ci_lib.py | 2 +- docs/howitworks.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/ci_lib.py b/.ci/ci_lib.py index 513ac98c..428d3ab9 100644 --- a/.ci/ci_lib.py +++ b/.ci/ci_lib.py @@ -167,7 +167,7 @@ def get_output(s, *args, **kwargs): def exists_in_path(progname): """ - Return True if proganme exists in $PATH. + Return True if progname exists in $PATH. >>> exists_in_path('echo') True diff --git a/docs/howitworks.rst b/docs/howitworks.rst index 05c097e5..27b109fe 100644 --- a/docs/howitworks.rst +++ b/docs/howitworks.rst @@ -813,7 +813,7 @@ executes under the runtime importer lock, ensuring :py:keyword:`import` statements executing in local threads are serialized. .. note:: - + In Python 2, :py:exc:`ImportError` is raised when :py:keyword:`import` is attempted while the runtime import lock is held by another thread, therefore imports must be serialized by only attempting them from the main