8000 Fix broken links · matplotlib/matplotlib@5353f09 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5353f09

Browse files
ksundentacaswell
authored andcommitted
Fix broken links
1 parent fbb01a3 commit 5353f09

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

doc/devel/development_setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Change into this directory before continuing::
7272

7373
* `Git documentation <https://git-scm.com/doc>`_
7474
* `GitHub-Contributing to a Project <https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project>`_
75-
* `Introduction to GitHub <https://lab.github.com/githubtraining/introduction-to-github>`_
75+
* `GitHub Skills <https://skills.github.com/>`_
7676
* :ref:`using-git`
7777
* :ref:`git-resources`
7878
* `Installing git <https://git-scm.com/book/en/v2/Getting-Started-Installing-Git>`_

doc/devel/development_workflow.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,13 @@ In more detail
130130
``git commit -am 'A commit message'``. Note the ``-am`` options to
131131
``commit``. The ``m`` flag just signals that you're going to type a
132132
message on the command line. The ``a`` flag — you can just take on
133-
faith — or see `why the -a flag?`_ — and the helpful use-case
134-
description in the `tangled working copy problem`_. The
133+
faith — or see `why the -a flag?`_. The
135134
`git commit <https://git-scm.com/docs/git-commit>`_ manual page might also be
136135
useful.
137136
#. To push the changes up to your forked repo on GitHub, do a ``git
138137
push``.
139138

140139
.. _why the -a flag?: http://gitready.com/beginner/2009/01/18/the-staging-area.html
141-
.. _tangled working copy problem: http://2ndscale.com/rtomayko/2008/the-thing-about-git
142140

143141

144142
Open a pull request

doc/users/explain/figures.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ MacOS backend as well. These are typically chosen either in the user's
5252
``matplotlib.use('QtAgg')`` at the beginning of a session or script.
5353

5454
When run from a script, or interactively (e.g. from an
55-
`iPython shell <https://https://ipython.readthedocs.io/en/stable/>`_) the Figure
55+
`iPython shell <https://ipython.readthedocs.io/en/stable/>`_) the Figure
5656
will not be shown until we call ``plt.show()``. The Figure will appear in
5757
a new GUI window, and usually will have a toolbar with Zoom, Pan, and other tools
5858
for interacting with the Figure. By default, ``plt.show()`` blocks

lib/matplotlib/path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ def arc(cls, theta1, theta2, n=None, is_wedge=False):
937937
938938
Masionobe, L. 2003. `Drawing an elliptical arc using
939939
polylines, quadratic or cubic Bezier curves
940-
<http://www.spaceroots.org/documents/ellipse/index.html>`_.
940+
<https://web.archive.org/web/20190318044212/http://www.spaceroots.org/documents/ellipse/index.html>`_.
941941
"""
942942
halfpi = np.pi * 0.5
943943

0 commit comments

Comments
 (0)
0