summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-03-05 13:28:04 -0700
committerCharles Harris <charlesr.harris@gmail.com>2014-03-05 13:28:04 -0700
commitfea6079da7929aff63bf8ef59b20e7a04dafcf0c (patch)
tree33822122fe92f6f4f9d65dc5da98a3c60c3dffd8
parent30b24450537ae4805c281b29e2aec6674c8880e6 (diff)
parent9b68fe73947942406dec072d9412310883cdf67c (diff)
downloadnumpy-fea6079da7929aff63bf8ef59b20e7a04dafcf0c.tar.gz
Merge pull request #4448 from sviterok/fix_broadcasting_doc
DOC: Update link to EricsBroadcastingDoc
-rw-r--r--numpy/doc/broadcasting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/broadcasting.py b/numpy/doc/broadcasting.py
index d6069a0fa..717914cda 100644
--- a/numpy/doc/broadcasting.py
+++ b/numpy/doc/broadcasting.py
@@ -171,7 +171,7 @@ Here the ``newaxis`` index operator inserts a new axis into ``a``,
making it a two-dimensional ``4x1`` array. Combining the ``4x1`` array
with ``b``, which has shape ``(3,)``, yields a ``4x3`` array.
-See `this article <http://www.scipy.org/EricsBroadcastingDoc>`_
+See `this article <http://wiki.scipy.org/EricsBroadcastingDoc>`_
for illustrations of broadcasting concepts.
"""