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

Skip to content

Commit e47e071

Browse files
committed
Correct typos found by mdboom
1 parent 00cdd55 commit e47e071

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/_templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ <h1>Third party packages</h1>
172172
extend and build on Matplotlib functionality,
173173
including a choice of two projection and mapping toolkits
174174
<a href="http://matplotlib.org/basemap">basemap</a> and
175-
<a href="http://scitools.org.uk/cartopy/docs/latest">cartopy</a>
175+
<a href="http://scitools.org.uk/cartopy/docs/latest">cartopy</a>.
176176
</p>
177177

178178
<h1>Citing matplotlib</h1>

doc/mpl_toolkits/axisartist/overview.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ curved coordinate systems.
1717

1818
.. plot:: mpl_toolkits/axisartist/examples/demo_floating_axis.py
1919

20-
Since it uses a special artists, some mpl commands that work on
20+
Since it uses special artists, some mpl commands that work on
2121
Axes.xaxis and Axes.yaxis may not work.
2222

2323
axisartist
2424
----------
2525

2626
*axisartist* module provides a custom (and very experimental) Axes
2727
class, where each axis (left, right, top and bottom) have a separate
28-
artist associated which is responsible to draw axis-line, ticks,
28+
associated artist which is responsible to draw axis-line, ticks,
2929
ticklabels, label. Also, you can create your own axis, which can pass
3030
through a fixed position in the axes coordinate, or a fixed position
3131
in the data coordinate (i.e., the axis floats around when viewlimit
3232
changes).
3333

34-
The axes class, by default, have its xaxis and yaxis invisible, and
35-
has 4 additional artists which are responsible to draw axis in
34+
The axes class, by default, has its xaxis and yaxis invisible, and
35+
has 4 additional artists which are responsible for drawing the 4 axis sides in
3636
"left","right","bottom" and "top". They are accessed as
3737
ax.axis["left"], ax.axis["right"], and so on, i.e., ax.axis is a
3838
dictionary that contains artists (note that ax.axis is still a

0 commit comments

Comments
 (0)