8000 Fix some typos by timhoffm · Pull Request #16077 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix some typos #16077

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
Jan 3, 2020
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
8000
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/api/prev_api_changes/api_changes_0.54.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The original pcolor and scatter functions are retained as
pcolor_classic and scatter_classic.

The return value from pcolor is a PolyCollection. Most of the
propertes that are available on rectangles or other patches are also
properties that are available on rectangles or other patches are also
available on PolyCollections, e.g., you can say::

c = scatter(blah, blah)
Expand Down
4 changes: 2 additions & 2 deletions doc/devel/color_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ Default Scatter Colormap
------------------------

For heat-map like applications it can be desirable to cover as much of
the luminence scale as possible, however when color mapping markers,
the luminance scale as possible, however when color mapping markers,
having markers too close to white can be a problem. For that reason
we propose using a different (but maybe related) color map to the
heat map for marker-based. The design parameters are the same as
above, only with a more limited luminence variation.
above, only with a more limited luminance variation.


Example script
Expand Down
2 changes: 1 addition & 1 deletion doc/devel/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ on, use the key/value keyword args in the function definition rather
than the ``**kwargs`` idiom.

In some cases, you may want to consume some keys in the local
function, and let others pass through. Instead of poping arguments to
function, and let others pass through. Instead of popping arguments to
use off ``**kwargs``, specify them as keyword-only arguments to the local
function. This makes it obvious at a glance which arguments will be
consumed in the function. For example, in
Expand Down
0