8000 Typos in api_changes and whats_new by ianthomas23 · Pull Request #5069 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Typos in api_changes and whats_new #5069

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 15, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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