Skip to content

Small doc nits. #21228

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
Sep 30, 2021
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/faq/environment_variables_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ searched first or last? To append to an existing environment variable::
setenv PATH ${PATH}:~/bin # csh/tcsh

To make your changes available in the future, add the commands to your
:file:`~/.bashrc`/:file:`.cshrc` file.
:file:`~/.bashrc` or :file:`~/.cshrc` file.

.. _setting-windows-environment-variables:

Expand Down
2 changes: 1 addition & 1 deletion doc/faq/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ How-to
:Release: |version|
:Date: |today|

Frequently asked questions about matplotlib
Frequently asked questions about Matplotlib:

.. toctree::
:maxdepth: 2
Expand Down
8 changes: 4 additions & 4 deletions doc/faq/troubleshooting_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ locate your :file:`matplotlib/` configuration directory, use
>>> mpl.get_configdir()
'/home/darren/.config/matplotlib'

On unix-like systems, this directory is generally located in your
On Unix-like systems, this directory is generally located in your
:envvar:`HOME` directory under the :file:`.config/` directory.

In addition, users have a cache directory. On unix-like systems, this is
In addition, users have a cache directory. On Unix-like systems, this is
separate from the configuration directory by default. To locate your
:file:`.cache/` directory, use :func:`matplotlib.get_cachedir`::

>>> import matplotlib as mpl
>>> mpl.get_cachedir()
'/home/darren/.cache/matplotlib'

On windows, both the config directory and the cache directory are
On Windows, both the config directory and the cache directory are
the same and are in your :file:`Documents and Settings` or :file:`Users`
directory by default::

Expand Down Expand Up @@ -93,7 +93,7 @@ If you are unable to find an answer to your question through search, please
provide the following information in your e-mail to the `mailing list
<https://mail.python.org/mailman/listinfo/matplotlib-users>`_:

* Your operating system (Linux/UNIX users: post the output of ``uname -a``).
* Your operating system (Linux/Unix users: post the output of ``uname -a``).

* Matplotlib version::

Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Learning resources
^^^^^^^^^

- :doc:`API Reference <api/index>`
- :doc:`Axes API <api/axes_api>` for *most* plotting methods
- :doc:`Axes API <api/axes_api>` for most plotting methods
- :doc:`Figure API <api/figure_api>` for figure-level methods
- Top-level interfaces to create:

Expand All @@ -98,7 +98,7 @@ Matplotlib.
Contributing
------------

Matplotlib is a community project maitained for and by its users. There are many ways
Matplotlib is a community project maintained for and by its users. There are many ways
you can help!

- Help other users `on discourse <https://discourse.matplotlib.org>`__
Expand Down