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

Skip to content

Commit 9f78cdc

Browse files
committed
applied Sandro's doc patch
svn path=/branches/v0_98_5_maint/; revision=6850
1 parent f6c1b97 commit 9f78cdc

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

doc/devel/coding_guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ in mind.
4444
* if your changes are non-trivial, please make an entry in the
4545
:file:`CHANGELOG`
4646

47-
* if you change the API, please document it in :file:`API_CHANGES`,
47+
* if you change the API, please document it in :file:`doc/api/api_changes.rst`,
4848
and consider posting to `matplotlib-devel
4949
<http://lists.sourceforge.net/mailman/listinfo/matplotlib-devel>`_
5050

doc/devel/documenting_mpl.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ requirements necessary to generate a new figure. Once these steps have been
252252
taken, these figures can be included in the usual way::
253253

254254
.. plot:: pyplots/tex_unicode_demo.py
255-
:include-source
255+
:include-source:
256256

257257
Examples
258258
--------

doc/faq/howto_faq.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ The :class:`matplotlib.backend_bases.RendererBase` instance, which is
137137
used to calculate the text size, is not known until the figure is
138138
drawn (:meth:`matplotlib.figure.Figure.draw`). After the window is
139139
drawn and the text instance knows its renderer, you can call
140-
:meth:`matplotlib.text.Text.get_window_extent``. One way to solve
140+
:meth:`matplotlib.text.Text.get_window_extent`. One way to solve
141141
this chicken and egg problem is to wait until the figure is draw by
142142
connecting
143143
(:meth:`matplotlib.backend_bases.FigureCanvasBase.mpl_connect`) to the
@@ -374,7 +374,7 @@ Multiple y-axis scales
374374

375375
A frequent request is to have two scales for the left and right
376376
y-axis, which is possible using :func:`~matplotlib.pyplot.twinx` (more
377-
than two scales are not currently supported, though it is on the wishq
377+
than two scales are not currently supported, though it is on the wish
378378
list). This works pretty well, though there are some quirks when you
379379
are trying to interactively pan and zoom, since both scales do not get
380380
the signals.
@@ -481,7 +481,7 @@ this::
481481

482482
This is not what show does and unfortunately, because doing blocking
483483
calls across user interfaces can be tricky, is currently unsupported,
484-
though we have made some pregress towards supporting blocking events.
484+
though we have made some progress towards supporting blocking events.
485485

486486

487487
.. _howto-contribute:

0 commit comments

Comments
 (0)