Skip to content

Commit 969ddd8

Browse files
committed
fixes a few rest formatting issues
1 parent 6926044 commit 969ddd8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

INSTALL

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ in addition to the matplotlib installer. On some systems you will
100100
also need to download msvcp71.dll library, which you can download from
101101
http://www.dll-files.com/dllindex/dll-files.shtml?msvcp71 or other
102102
sites. You will need to unzip the archive and drag the dll into
103-
c:\windows\system32
103+
:file:`c:\windows\system32`.
104104

105105
All of the GUI backends run on windows, but TkAgg is probably the
106106
best for interactive use from the standard python shell or ipython.
107-
The windows installer (*.exe) on the download page contains all the
107+
The windows installer (:file:`*.exe`) on the download page contains all the
108108
code you need to get up and running. However, there are many
109109
examples that are not included in the windows installer. If you
110110
want to try the many demos that come in the matplotlib src

lib/matplotlib/axes.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2040,7 +2040,7 @@ def grid(self, b=None, which='major', **kwargs):
20402040
"""
20412041
call signature::
20422042
2043-
grid(self, b=None, which='major', **kwargs)
2043+
grid(self, b=None, which='major', **kwargs)
20442044
20452045
Set the axes grids on or off; *b* is a boolean. (For MATLAB
20462046
compatibility, *b* may also be a string, 'on' or 'off'.)
@@ -2054,11 +2054,12 @@ def grid(self, b=None, which='major', **kwargs):
20542054
20552055
*kawrgs* are used to set the grid line properties, eg::
20562056
2057-
ax.grid(color='r', linestyle='-', linewidth=2)
2057+
ax.grid(color='r', linestyle='-', linewidth=2)
20582058
20592059
Valid :class:`~matplotlib.lines.Line2D` kwargs are
20602060
20612061
%(Line2D)s
2062+
20622063
"""
20632064
if len(kwargs):
20642065
b = True

0 commit comments

Comments
 (0)