Skip to content

Commit fa30700

Browse files
authored
Merge pull request matplotlib#12452 from anntzer/faq
Minor updates to the FAQ.
2 parents 820bea6 + 77963e1 commit fa30700

File tree

1 file changed

+5
-21
lines changed

1 file changed

+5
-21
lines changed

doc/faq/howto_faq.rst

+5-21
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,6 @@ that the bug reports will be a conversation. If you do not want to
578578
register with github, please email bug reports to the `mailing list
579579
580580

581-
582581
The easiest way to submit patches to Matplotlib is through pull
583582
requests on github. Please see the :ref:`developers-guide-index` for
584583
the details.
@@ -599,7 +598,7 @@ corners. This is where you come in.
599598
There is a good chance you know more about Matplotlib usage in some
600599
areas, the stuff you do every day, than many of the core developers
601600
who wrote most of the documentation. Just pulled your hair out
602-
compiling Matplotlib for windows? Write a FAQ or a section for the
601+
compiling Matplotlib for Windows? Write a FAQ or a section for the
603602
:ref:`installing-faq` page. Are you a digital signal processing wizard?
604603
Write a tutorial on the signal analysis plotting functions like
605604
:func:`~matplotlib.pyplot.xcorr`, :func:`~matplotlib.pyplot.psd` and
@@ -637,7 +636,7 @@ or look at the open issues on github.
637636
Matplotlib in a web application server
638637
======================================
639638

640-
Many users report initial problems trying to use maptlotlib in web
639+
Many users report initial problems trying to use Matplotlib in web
641640
application servers, because by default Matplotlib ships configured to
642641
work with a graphical user interface which may require an X11
643642
connection. Since many barebones application servers do not have X11
@@ -657,14 +656,14 @@ Agg is to call::
657656
matplotlib.use('Agg')
658657
import matplotlib.pyplot as plt
659658

660-
For more on configuring your backend, see
661-
:ref:`what-is-a-backend`.
659+
For more on configuring your backend, see :ref:`what-is-a-backend`.
662660

663661
Alternatively, you can avoid pylab/pyplot altogether, which will give
664662
you a little more control, by calling the API directly as shown in
665663
:doc:`/gallery/user_interfaces/canvasagg`.
666664

667-
You can either generate hardcopy on the filesystem by calling savefig::
665+
You can either generate hardcopy on the filesystem by calling
666+
`.Figure.savefig()`::
668667

669668
# do this before importing pylab or pyplot
670669
import matplotlib
@@ -692,21 +691,6 @@ Pillow for further processing::
692691
im = Image.open(imgdata)
693692

694693

695-
Matplotlib with apache
696-
----------------------
697-
698-
TODO; see :ref:`how-to-contribute-docs`.
699-
700-
Matplotlib with django
701-
----------------------
702-
703-
TODO; see :ref:`how-to-contribute-docs`.
704-
705-
Matplotlib with zope
706-
--------------------
707-
708-
TODO; see :ref:`how-to-contribute-docs`.
709-
710694
.. _howto-click-maps:
711695

712696
Clickable images for HTML

0 commit comments

Comments
 (0)