Skip to content

More missing refs fixes. #17048

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
Apr 7, 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
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ Toolkits
========

Matplotlib ships with several add-on :doc:`toolkits <api/toolkits/index>`,
including 3D plotting with `mplot3d`, axes helpers in `axes_grid1` and axis
helpers in `axisartist`.
including 3D plotting with `.mplot3d`, axes helpers in `.axes_grid1` and axis
helpers in `.axisartist`.

Third party packages
====================
Expand Down
15 changes: 0 additions & 15 deletions doc/missing-references.json
Original file line number Diff line number Diff line change
Expand Up @@ -818,15 +818,9 @@
"axes3d.Axes3D.zaxis": [
"doc/api/prev_api_changes/api_changes_3.1.0.rst:933"
],
"axes_grid1": [
"doc/index.rst:157"
],
"axis.Axis.get_ticks_position": [
"doc/api/prev_api_changes/api_changes_3.1.0.rst:821"
],
"axisartist": [
"doc/index.rst:157"
],
"backend_bases.RendererBase": [
"lib/matplotlib/backends/backend_template.py:docstring of matplotlib.backends.backend_template.RendererTemplate:4"
],
Expand Down Expand Up @@ -1416,9 +1410,6 @@
"mpl_toolkits.axislines.Axes": [
"lib/mpl_toolkits/axisartist/axis_artist.py:docstring of mpl_toolkits.axisartist.axis_artist:26"
],
"mplot3d": [
"doc/index.rst:157"
],
"new_figure_manager": [
"doc/devel/MEP/MEP23.rst:75"
],
Expand Down Expand Up @@ -1499,12 +1490,6 @@
"lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.SimplePatchShadow:38",
"lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.withSimplePatchShadow:47"
],
"sharex": [
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.subplots:13"
],
"sharey": [
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.subplots:13"
],
"show": [
"doc/devel/MEP/MEP23.rst:70"
],
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/pyplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
Number of rows/columns of the subplot grid.

sharex, sharey : bool or {'none', 'all', 'row', 'col'}, default: False
Controls sharing of properties among x (`sharex`) or y (`sharey`)
Controls sharing of properties among x (*sharex*) or y (*sharey*)
axes:

- True or 'all': x- or y-axis will be shared among all subplots.
Expand Down