Skip to content

Commit

Permalink
Typos in api_changes and whats_new
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Sep 15, 2015
1 parent ae34212 commit 2027a33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/api/api_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ regardless of that parameter. Now the object can and does clip the child `Artist

You can turn off the clipping on a per-child basis using `child.set_clip_on(False)`.

Add salt to cilpPath id
Add salt to clipPath id
```````````````````````

Add salt to the hash used to determine the id of the ``clipPath``
Expand Down Expand Up @@ -292,7 +292,7 @@ Removed `Lena` images from sample_data
``````````````````````````````````````

The ``lena.png`` and ``lena.jpg`` images have been removed from
matplotlibs sample_data directory. The images are also no longer
matplotlib's sample_data directory. The images are also no longer
available from `matplotlib.cbook.get_sample_data`. We suggest using
`matplotlib.cbook.get_sample_data('grace_hopper.png')` or
`matplotlib.cbook.get_sample_data('grace_hopper.jpg')` instead.
Expand Down
6 changes: 3 additions & 3 deletions doc/users/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Added ``axes.prop_cycle`` key to rcParams
This is a more generic form of the now-deprecated ``axes.color_cycle`` param.
Now, we can cycle more than just colors, but also linestyles, hatches,
and just about any other artist property. Cycler notation is used for
defining proprty cycles. Adding cyclers together will be like you are
defining property cycles. Adding cyclers together will be like you are
`zip()`-ing together two or more property cycles together::

axes.prop_cycle: cycler('color', 'rgb') + cycler('lw', [1, 2, 3])
Expand Down Expand Up @@ -303,9 +303,9 @@ Added support to save the figure with the same dpi as the figure on the screen u

Example::

f = plt.figure(dpi=25) # dpi set to 25
f = plt.figure(dpi=25) # dpi set to 25
S = plt.scatter([1,2,3],[4,5,6])
f.savefig('output.png', dpi='figure') # output savefig dpi set to 25 (same as figure)
f.savefig('output.png', dpi='figure') # output savefig dpi set to 25 (same as figure)


Updated Table and to control edge visibility
Expand Down

0 comments on commit 2027a33

Please sign in to comment.