Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0409b9f

Browse files
committed
Fix some mis-typed URLs
svn path=/trunk/matplotlib/; revision=5355
1 parent 581f1c1 commit 0409b9f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

doc/faq/howto_faq.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ enabled, you may get errors if you don't configure matplotlib for use
1313
in these environments. Most importantly, you need to decide what
1414
kinds of images you want to generate (PNG, PDF, SVG) and configure the
1515
appropriate default backend. For 99% of users, this will be the Agg
16-
backend, which uses the C++ `antigrain <http://antigrain.com`_
16+
backend, which uses the C++ `antigrain <http://antigrain.com>`_
1717
rendering engine to make nice PNGs. The Agg backend is also
1818
configured to recognize requests to generate other output formats
1919
(PDF, PS, EPS, SVG). The easiest way to configure matplotlib to use
2020
Agg is to call::
2121

22-
# do this before importing pylab or pyplot
22+
# do this before importing pylab or pyplot
2323
import matplotlib
2424
matplotlib.use('Agg')
2525
import matplotlib.pyplot as plt
26-
26+
2727
Alternatively, you can avoid pylab/pyplot altogeher, which will give
2828
you a little more control, by calling the API directly as shown in
29-
`agg_oo.py <http://matplotlib.sf.net/examples/api/agg_oo.py`_ .
29+
`agg_oo.py <http://matplotlib.sf.net/examples/api/agg_oo.py>`_ .
3030

3131
You can either generate hardcopy on the filesystem by calling savefig::
3232

33-
# do this before importing pylab or pyplot
33+
# do this before importing pylab or pyplot
3434
import matplotlib
3535
matplotlib.use('Agg')
3636
import matplotlib.pyplot as plt
@@ -58,4 +58,4 @@ TODO
5858
How do I use matplotlib with zope?
5959
----------------------------------
6060

61-
TODO
61+
TODO

0 commit comments

Comments
 (0)