Skip to content
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

Use double ` for inline code #254

Merged
merged 2 commits into from
Oct 8, 2019
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 docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Configuration & API
Noxfile
-------

Nox looks for configuration in a file named `noxfile.py` by default. You can specify
Nox looks for configuration in a file named ``noxfile.py`` by default. You can specify
a different file using the ``--noxfile`` argument when running ``nox``.


Expand Down
6 changes: 3 additions & 3 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To list all available sessions, including parametrized sessions:
Running all sessions
--------------------

You can run every session by just executing `nox` without any arguments:
You can run every session by just executing ``nox`` without any arguments:

.. code-block:: console

Expand Down Expand Up @@ -264,8 +264,8 @@ However, this will never output colorful logs:
Controling commands verbosity
-----------------------------

By default, Nox will only show output of commands that fail, or, when the commands get passed `silent=False`.
By passing `--verbose` to Nox, all output of all commands run is shown, regardless of the silent argument.
By default, Nox will only show output of commands that fail, or, when the commands get passed ``silent=False``.
By passing ``--verbose`` to Nox, all output of all commands run is shown, regardless of the silent argument.


Outputting a machine-readable report
Expand Down
4 changes: 2 additions & 2 deletions nox/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def conda_install(self, *args, **kwargs):
session.conda_install('numpy', 'scipy')
session.conda_install('--channel=conda-forge', 'dask==2.1.0')

To install packages from a `requirements.txt` file::
To install packages from a ``requirements.txt`` file::

session.conda_install('--file', 'requirements.txt')
session.conda_install('--file', 'requirements-dev.txt')
Expand Down Expand Up @@ -278,7 +278,7 @@ def install(self, *args, **kwargs):
session.install('requests', 'mock')
session.install('requests[security]==2.9.1')

To install packages from a `requirements.txt` file::
To install packages from a ``requirements.txt`` file::

session.install('-r', 'requirements.txt')
session.install('-r', 'requirements-dev.txt')
Expand Down