@@ -29,7 +29,7 @@ recommended.
29
29
30
30
.. warning ::
31
31
32
- If you already have a version of matplotlib installed, you will need to
32
+ If you already have a version of Matplotlib installed, you will need to
33
33
uninstall it.
34
34
35
35
We use `Git <https://git-scm.com/ >`_ for version control and
@@ -40,7 +40,7 @@ You can check out the latest sources with the command (see
40
40
41
41
git clone git@github.com:matplotlib/matplotlib.git
42
42
43
- and navigate to the matplotlib directory.
43
+ and navigate to the Matplotlib directory.
44
44
45
45
To make sure the tests run locally you must build against the correct version
46
46
of freetype. To configure the build system to fetch and build it either export
@@ -105,7 +105,7 @@ Contributing code
105
105
How to contribute
106
106
-----------------
107
107
108
- The preferred way to contribute to matplotlib is to fork the `main
108
+ The preferred way to contribute to Matplotlib is to fork the `main
109
109
repository <https://github.com/matplotlib/matplotlib/> `__ on GitHub,
110
110
then submit a "pull request" (PR):
111
111
@@ -138,7 +138,7 @@ then submit a "pull request" (PR):
138
138
139
139
$ git push -u origin my-feature
140
140
141
- Finally, go to the web page of your fork of the matplotlib repo,
141
+ Finally, go to the web page of your fork of the Matplotlib repo,
142
142
and click 'Pull request' to send your changes to the maintainers for review.
143
143
You may want to consider sending an email to the mailing list for more
144
144
visibility.
@@ -214,7 +214,7 @@ tools:
214
214
215
215
.. note ::
216
216
217
- The current state of the matplotlib code base is not compliant with all
217
+ The current state of the Matplotlib code base is not compliant with all
218
218
of those guidelines, but we expect that enforcing those constraints on all
219
219
new contributions will move the overall code base quality in the right
220
220
direction.
@@ -237,7 +237,7 @@ New contributors should look for the following tags when looking for issues.
237
237
We strongly recommend that new contributors tackle
238
238
`new-contributor-friendly <https://github.com/matplotlib/matplotlib/labels/new-contributor-friendly >`_
239
239
issues (easy, well documented issues, that do not require an understanding of
240
- the different submodules of matplotlib ) and
240
+ the different submodules of Matplotlib ) and
241
241
`Easy-fix <https://github.com/matplotlib/matplotlib/labels/Difficulty%3A%20Easy >`_
242
242
issues. This helps the contributor become familiar with the contribution
243
243
workflow, and for the core devs to become acquainted with the contributor;
@@ -249,7 +249,7 @@ Other ways to contribute
249
249
=========================
250
250
251
251
252
- Code is not the only way to contribute to matplotlib . For instance,
252
+ Code is not the only way to contribute to Matplotlib . For instance,
253
253
documentation is also a very important part of the project and often doesn't
254
254
get as much attention as it deserves. If you find a typo in the documentation,
255
255
or have made improvements, do not hesitate to send an email to the mailing
@@ -379,10 +379,10 @@ Developing a new backend
379
379
If you are working on a custom backend, the *backend * setting in
380
380
:file: `matplotlibrc ` (:ref: `customizing-matplotlib `) supports an
381
381
external backend via the ``module `` directive. if
382
- :file: `my_backend.py ` is a matplotlib backend in your
382
+ :file: `my_backend.py ` is a Matplotlib backend in your
383
383
:envvar: `PYTHONPATH `, you can set it on one of several ways
384
384
385
- * in matplotlibrc::
385
+ * in :file: ` matplotlibrc ` ::
386
386
387
387
backend : module://my_backend
388
388
@@ -413,7 +413,7 @@ when the website is built to show up both in the `examples
413
413
<../gallery.html> `_ sections of the website.
414
414
415
415
Any sample data that the example uses should be kept small and
416
- distributed with matplotlib in the
416
+ distributed with Matplotlib in the
417
417
`lib/matplotlib/mpl-data/sample_data/ ` directory. Then in your
418
418
example code you can load it into a file handle with::
419
419
0 commit comments