summaryrefslogtreecommitdiffstats
path: root/Doc/faq/programming.rst
diff options
context:
space:
mode:
authorRafael Fontenelle <rffontenelle@users.noreply.github.com>2023-05-02 11:50:16 (GMT)
committerGitHub <noreply@github.com>2023-05-02 11:50:16 (GMT)
commit5e76305236df99aec191431585cd4bfa0c080766 (patch)
tree55b5f5ca59dbbf37c7d8e8194aa32b07e9a47424 /Doc/faq/programming.rst
parent61f1fbd04016e53d6ea96d23b84ead7d6ab9fbb9 (diff)
downloadcpython-5e76305236df99aec191431585cd4bfa0c080766.zip
cpython-5e76305236df99aec191431585cd4bfa0c080766.tar.gz
cpython-5e76305236df99aec191431585cd4bfa0c080766.tar.bz2
[3.11] GH-103484: Fix redirected permanently URLs (GH-104001) (#104088)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Oleg Iarygin <dralife@yandex.ru> Fix redirected permanently URLs (#104001)
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 38f9b17..ab5618d 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -61,7 +61,7 @@ Yes.
`Pyflakes <https://github.com/PyCQA/pyflakes>`_ do basic checking that will
help you catch bugs sooner.
-Static type checkers such as `Mypy <http://mypy-lang.org/>`_,
+Static type checkers such as `Mypy <https://mypy-lang.org/>`_,
`Pyre <https://pyre-check.org/>`_, and
`Pytype <https://github.com/google/pytype>`_ can check type hints in Python
source code.