Skip to content

Commit 46cb764

Browse files
cehgvanrossum
authored andcommitted
Fix linkcheck errors (#5346)
* Fix attrs' links www.attrs.org doesn't have a SSL certificate, so don't link to HTTPS. Fix invalid anchor tag for validator decorators. * Use HTTPS scheme for Zulip blog link
1 parent b07f8f5 commit 46cb764

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/additional_features.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ of the previous sections.
99
The attrs package
1010
*****************
1111

12-
`attrs <https://www.attrs.org/en/stable>`_ is a package that lets you define
12+
`attrs <http://www.attrs.org/en/stable>`_ is a package that lets you define
1313
classes without writing boilerplate code. Mypy can detect uses of the
1414
package and will generate the necessary method definitions for decorated
1515
classes using the type annotations it finds.
@@ -75,7 +75,7 @@ Caveats/Known Issues
7575
will complain about not understanding the argument and the type annotation in
7676
``__init__`` will be replaced by ``Any``.
7777

78-
* `Validator decorators <http://www.attrs.org/en/stable/examples.html#decorator>`_
78+
* `Validator decorators <http://www.attrs.org/en/stable/examples.html#validators>`_
7979
and `default decorators <http://www.attrs.org/en/stable/examples.html#defaults>`_
8080
are not type-checked against the attribute they are setting/validating.
8181

docs/source/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ resources:
184184
* Read :ref:`existing-code` if you have a significant existing
185185
codebase without many type annotations.
186186

187-
* Read the `blog post <http://blog.zulip.org/2016/10/13/static-types-in-python-oh-mypy/>`_
187+
* Read the `blog post <https://blog.zulip.org/2016/10/13/static-types-in-python-oh-mypy/>`_
188188
about the Zulip project's experiences with adopting mypy.
189189

190190
* If you prefer watching talks instead of reading, here are

0 commit comments

Comments
 (0)