diff options
author | Miguel <63242832+mandresm@users.noreply.github.com> | 2024-06-27 12:32:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 12:32:16 +0200 |
commit | 60ed68257769d8a25b5634d8cd0896e6c679785b (patch) | |
tree | 9982e5f6814532588411132267919c526e271817 | |
parent | 6c1fa8c30b7b73237ece81666a5797098fc998df (diff) | |
download | spack-60ed68257769d8a25b5634d8cd0896e6c679785b.tar.gz spack-60ed68257769d8a25b5634d8cd0896e6c679785b.tar.bz2 spack-60ed68257769d8a25b5634d8cd0896e6c679785b.tar.xz spack-60ed68257769d8a25b5634d8cd0896e6c679785b.zip |
Fix typo in docs (#44891)
Fixes on the rst formatting of the make_jobs
-rw-r--r-- | lib/spack/docs/packaging_guide.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst index 4a8112cfb4..7a66601189 100644 --- a/lib/spack/docs/packaging_guide.rst +++ b/lib/spack/docs/packaging_guide.rst @@ -2344,10 +2344,10 @@ you set ``parallel`` to ``False`` at the package level, then each call to ``make()`` will be sequential by default, but packagers can call ``make(parallel=True)`` to override it. -Note that the `--jobs` option works out of the box for all standard +Note that the ``--jobs`` option works out of the box for all standard build systems. If you are using a non-standard build system instead, you -can use the variable `make_jobs` to extract the number of jobs specified -by the `--jobs` option: +can use the variable ``make_jobs`` to extract the number of jobs specified +by the ``--jobs`` option: .. code-block:: python :emphasize-lines: 7, 11 |