8000 Some extra typos by Carreau · Pull Request #11981 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Some extra typos #11981

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
Aug 30, 2018
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
2 changes: 1 addition & 1 deletion doc/api/api_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ The entire contents of `testing.noseclasses` have also been removed.
:class:`matplotlib.cbook.deprecation.mplDeprecation` will be removed in
future versions. It is just an alias for
:class:`matplotlib.cbook.deprecation.MatplotlibDeprecationWarning`.
Please use the :class:`~.MatplotlibDeprecationWarning` directly if neccessary.
Please use the :class:`~.MatplotlibDeprecationWarning` directly if necessary.


matplotlib.cbook.Bunch deprecated
Expand Down
4 changes: 2 additions & 2 deletions lib/mpl_toolkits/mplot3d/art3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def get_dir_vector(zdir):
zdir : {'x', 'y', 'z', None, 3-tuple}
The direction. Possible values are:
- 'x': equivalent to (1, 0, 0)
- 'y': euqivalent to (0, 1, 0)
- 'y': equivalent to (0, 1, 0)
- 'z': equivalent to (0, 0, 1)
- *None*: euqivalent to (0, 0, 0)
- *None*: equivalent to (0, 0, 0)
- an iterable (x, y, z) is returned unchanged.

Returns
Expand Down
2 changes: 1 addition & 1 deletion tutorials/intermediate/gridspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# The power of gridspec comes in being able to create subplots that span
# rows and columns. Note the
# `Numpy slice <https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html>`_
# syntax for selecing the part of the gridspec each subplot will occupy.
# syntax for selecting the part of the gridspec each subplot will occupy.
#
# Note that we have also used the convenience method `.Figure.add_gridspec`
# instead of `.gridspec.GridSpec`, potentially saving the user an import,
Expand Down
2 changes: 1 addition & 1 deletion tutorials/introductory/pyplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
# ``line,`` to get the first element of that list::
#
# line, = plt.plot(x, y, '-')
# line.set_antialiased(False) # turn off antialising
# line.set_antialiased(False) # turn off antialiasing
#
# * Use the :func:`~matplotlib.pyplot.setp` command. The example below
# uses a MATLAB-style command to set multiple properties
Expand Down
0