diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2022-06-21 19:10:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 19:10:45 (GMT) |
commit | 830513754d081619b2d72db17770627312072fa5 (patch) | |
tree | 6cedb4923e174bf2611faa1b5e74a8016f12bbb6 /Doc/tools | |
parent | f62ff97f31a775cc7956adeae32c14e7c85bdc15 (diff) | |
download | cpython-830513754d081619b2d72db17770627312072fa5.zip cpython-830513754d081619b2d72db17770627312072fa5.tar.gz cpython-830513754d081619b2d72db17770627312072fa5.tar.bz2 |
gh-93675: Fix typos in `Doc/` (GH-93676)
Closes #93675
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/rstlint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/rstlint.py b/Doc/tools/rstlint.py index d1c53dc..4ea68ef 100644 --- a/Doc/tools/rstlint.py +++ b/Doc/tools/rstlint.py @@ -130,7 +130,7 @@ role_with_no_backticks = re.compile(r"%s[^` ]" % all_roles) # Find role glued with another word like: # the:c:func:`PyThreadState_LeaveTracing` function. -# instad of: +# instead of: # the :c:func:`PyThreadState_LeaveTracing` function. role_glued_with_word = re.compile(r"[a-zA-Z]%s" % all_roles) |