Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1a16d18

Browse files
authored
Merge pull request #20510 from timhoffm/capitalization
Consistent capitalization of section headers
2 parents 6e49fd7 + b727d72 commit 1a16d18

16 files changed

+63
-62
lines changed

doc/api/next_api_changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
================
3-
Next API Changes
3+
Next API changes
44
================
55

66
.. ifconfig:: releaselevel == 'dev'

doc/devel/coding_guide.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Organizational topics:
8585

8686
.. _pr-guidelines-details:
8787

88-
Detailed Guidelines
88+
Detailed guidelines
8989
===================
9090

9191
.. _pr-documentation:
@@ -246,7 +246,7 @@ Number of commits and squashing
246246

247247
.. _branches_and_backports:
248248

249-
Branches and Backports
249+
Branches and backports
250250
======================
251251

252252
Current branches

doc/devel/color_changes.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _color_changes:
22

33
*********************
4-
Default Color changes
4+
Default color changes
55
*********************
66

77
As discussed at length elsewhere [insert links], ``jet`` is an
@@ -14,7 +14,7 @@ plots and to adopt a different colormap for filled plots (``imshow``,
1414
``pcolor``, ``contourf``, etc) and for scatter like plots.
1515

1616

17-
Default Heat Map Colormap
17+
Default heat map colormap
1818
-------------------------
1919

2020
The choice of a new colormap is fertile ground to bike-shedding ("No,
@@ -57,10 +57,10 @@ Nathaniel Smith) to evaluate proposed colormaps.
5757
Example script
5858
++++++++++++++
5959

60-
Proposed Colormaps
60+
Proposed colormaps
6161
++++++++++++++++++
6262

63-
Default Scatter Colormap
63+
Default scatter colormap
6464
------------------------
6565

6666
For heat-map like applications it can be desirable to cover as much of
@@ -99,10 +99,10 @@ Example script
9999
qd = np.random.rand(np.prod(X.shape))
100100
Q.set_array(qd)
101101

102-
Proposed Colormaps
102+
Proposed colormaps
103103
++++++++++++++++++
104104

105-
Color Cycle / Qualitative colormap
105+
Color cycle / qualitative colormap
106106
-----------------------------------
107107

108108
When plotting lines it is frequently desirable to plot multiple lines
@@ -131,5 +131,5 @@ Example script
131131

132132
ax2.set_xlim(0, 2*np.pi)
133133

134-
Proposed Color cycle
134+
Proposed color cycle
135135
++++++++++++++++++++

doc/devel/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ is expected to abide by our
1212
The project is hosted on
1313
https://github.com/matplotlib/matplotlib
1414

15-
Contributor Incubator
15+
Contributor incubator
1616
=====================
1717

1818
If you are interested in becoming a regular contributor to Matplotlib, but
@@ -28,7 +28,7 @@ in community work, or get "pre-review" on your PR.
2828

2929
.. _new_contributors:
3030

31-
Issues for New Contributors
31+
Issues for new contributors
3232
---------------------------
3333

3434
While any contributions are welcome, we have marked some issues as

doc/devel/min_dep_policy.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _min_deps_policy:
22

33
======================================
4-
Minimum Version of Dependencies Policy
4+
Minimum version of dependencies policy
55
======================================
66

77
For the purpose of this document, 'minor version' is in the sense of
@@ -32,7 +32,7 @@ on every major and minor release, but never on a patch release.
3232

3333
See also the :ref:`list-of-dependency-min-versions`.
3434

35-
Python Dependencies
35+
Python dependencies
3636
===================
3737

3838
For Python dependencies we should support at least:
@@ -48,7 +48,7 @@ without complied extensions
4848
We will only bump these dependencies as we need new features or the old
4949
versions no longer support our minimum NumPy or Python.
5050

51-
Test and Documentation Dependencies
51+
Test and documentation dependencies
5252
===================================
5353

5454
As these packages are only needed for testing or building the docs and

doc/devel/release_guide.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. _release-guide:
44

55
=============
6-
Release Guide
6+
Release guide
77
=============
88

99

@@ -45,8 +45,8 @@ is currently broken::
4545

4646
.. _release_ghstats:
4747

48-
GitHub Stats
49-
============
48+
GitHub statistics
49+
=================
5050

5151

5252
We automatically extract GitHub issue, PRs, and authors from GitHub via the
@@ -85,7 +85,7 @@ most common issue is ``*`` which is interpreted as unclosed markup).
8585

8686
.. _release_chkdocs:
8787

88-
Update and Validate the Docs
88+
Update and validate the docs
8989
============================
9090

9191
Merge ``*-doc`` branch
@@ -101,7 +101,7 @@ When making major or minor releases, update the supported versions in the
101101
Security Policy in :file:`SECURITY.md`. Commonly, this may be one or two
102102
previous minor releases, but is dependent on release managers.
103103

104-
Update "What's New" and "API changes"
104+
Update "What's new" and "API changes"
105105
-------------------------------------
106106

107107
Before tagging major and minor releases, the "what's new" and "API changes"
@@ -216,7 +216,7 @@ On this branch un-comment the globs from :ref:`release_chkdocs`. And then ::
216216

217217
.. _release_DOI:
218218

219-
Release Management / DOI
219+
Release management / DOI
220220
========================
221221

222222
Via the `GitHub UI
@@ -308,7 +308,7 @@ Congratulations, you have now done the second scariest part!
308308

309309
.. _release_docs:
310310

311-
Build and Deploy Documentation
311+
Build and deploy documentation
312312
==============================
313313

314314
To build the documentation you must have the tagged version installed, but

doc/devel/style_guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
=========================
3-
Documentation Style Guide
3+
Documentation style guide
44
=========================
55

66
This guide contains best practices for the language and formatting of Matplotlib

doc/devel/triage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The following actions are typically useful:
6262
explores how to lead online discussions in the context of open source.
6363

6464

65-
Triage Team
65+
Triage team
6666
-----------
6767

6868

doc/faq/environment_variables_faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _environment-variables:
22

33
*********************
4-
Environment Variables
4+
Environment variables
55
*********************
66

77
.. contents::

doc/resources/index.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
.. _resources-index:
22

3-
*******************
4-
External Resources
5-
*******************
3+
******************
4+
External resources
5+
******************
66

77

8-
=============================
9-
Books, Chapters and Articles
10-
=============================
8+
============================
9+
Books, chapters and articles
10+
============================
1111

1212
* `Mastering matplotlib
1313
<https://www.packtpub.com/big-data-and-business-intelligence/mastering-matplotlib>`_
@@ -33,9 +33,9 @@
3333
<http://scipython.com/book/chapter-7-matplotlib/>`_
3434
by Christian Hill
3535

36-
=======
37-
Videos
38-
=======
36+
======
37+
Videos
38+
======
3939

4040
* `Plotting with matplotlib <https://www.youtube.com/watch?v=P7SVi0YTIuE>`_
4141
by Mike Müller
@@ -51,9 +51,9 @@
5151
<http://shop.oreilly.com/product/0636920046592.do>`_
5252
by Randal S. Olson
5353

54-
==========
55-
Tutorials
56-
==========
54+
=========
55+
Tutorials
56+
=========
5757

5858
* `Matplotlib tutorial <http://www.labri.fr/perso/nrougier/teaching/matplotlib/>`_
5959
by Nicolas P. Rougier

doc/users/github_stats.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.. _github-stats:
22

3-
GitHub Stats
4-
============
3+
GitHub statistics
4+
=================
55

6-
GitHub stats for 2021/03/31 - 2021/05/07 (tag: v3.4.1)
6+
GitHub statistics for 2021/03/31 - 2021/05/07 (tag: v3.4.1)
77

88
These lists are automatically generated, and may be incomplete or contain duplicates.
99

doc/users/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _users-guide-index:
22

33
############
4-
User's Guide
4+
User's guide
55
############
66

77
.. only:: html

doc/users/interactive.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
.. _mpl-shell:
44

5-
=====================
6-
Interactive Figures
7-
=====================
5+
===================
6+
Interactive figures
7+
===================
88

99
.. toctree::
1010

@@ -201,7 +201,7 @@ helpful keybindings are registered by default.
201201

202202
.. _key-event-handling:
203203

204-
Navigation Keyboard Shortcuts
204+
Navigation keyboard shortcuts
205205
-----------------------------
206206

207207
The following table holds all the default keys, which can be
@@ -249,8 +249,8 @@ documentation of your GUI toolkit for details.
249249

250250

251251

252-
Jupyter Notebooks / Lab
253-
-----------------------
252+
Jupyter Notebooks / JupyterLab
253+
------------------------------
254254

255255
.. note::
256256

doc/users/interactive_guide.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
.. currentmodule:: matplotlib
44

55

6-
==================================================
7-
Interactive Figures and Asynchronous Programming
8-
==================================================
6+
================================================
7+
Interactive figures and asynchronous programming
8+
================================================
99

1010
Matplotlib supports rich interactive figures by embedding figures into
1111
a GUI window. The basic interactions of panning and zooming in an
@@ -21,7 +21,7 @@ handling system <event-handling-tutorial>`, `Interactive Tutorial
2121
`Interactive Applications using Matplotlib
2222
<http://www.amazon.com/Interactive-Applications-using-Matplotlib-Benjamin/dp/1783988843>`__.
2323

24-
Event Loops
24+
Event loops
2525
===========
2626

2727
Fundamentally, all user interaction (and networking) is implemented as
@@ -71,7 +71,7 @@ interfaces.
7171

7272
.. _cp_integration:
7373

74-
Command Prompt Integration
74+
Command prompt integration
7575
==========================
7676

7777
So far, so good. We have the REPL (like the IPython terminal) that
@@ -92,7 +92,7 @@ responsive we need a method to allow the loops to 'timeshare' :
9292

9393
.. _cp_block_the_prompt:
9494

95-
Blocking the Prompt
95+
Blocking the prompt
9696
-------------------
9797

9898
.. autosummary::
@@ -138,7 +138,7 @@ between polling for additional data. See :ref:`interactive_scripts`
138138
for more details.
139139

140140

141-
Input Hook integration
141+
Input hook integration
142142
----------------------
143143

144144
While running the GUI event loop in a blocking mode or explicitly
@@ -236,7 +236,7 @@ which would poll for new data and update the figure at 1Hz.
236236

237237
.. _spin_event_loop:
238238

239-
Explicitly spinning the Event Loop
239+
Explicitly spinning the event Loop
240240
----------------------------------
241241

242242
.. autosummary::
@@ -306,7 +306,7 @@ resources on the visualization and less on your computation.
306306

307307
.. _stale_artists:
308308

309-
Stale Artists
309+
Stale artists
310310
=============
311311

312312
Artists (as of Matplotlib 1.5) have a **stale** attribute which is

doc/users/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ licenses. Non-BSD compatible licenses (e.g., LGPL) are acceptable in
1212
matplotlib toolkits. For a discussion of the motivations behind the
1313
licencing choice, see :ref:`license-discussion`.
1414

15-
Copyright Policy
15+
Copyright policy
1616
================
1717

1818
John Hunter began Matplotlib around 2003. Since shortly before his

0 commit comments

Comments
 (0)