Skip to content

Commit 3ecb9ab

Browse files
committed
Fix more block quotes
1 parent 0b1b756 commit 3ecb9ab

4 files changed

Lines changed: 32 additions & 32 deletions

File tree

tutorial_binary_cache.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ look very similar to a container image --- we will get to that in a bit.
116116
You can change the visibility to ``public`` by going to GitHub Packages from your GitHub account, selecting the ``buildcache`` package, go to ``package settings``, and change the visibility to ``public`` in the ``Danger Zone`` section.
117117
This page can also be directly accessed by going to
118118

119-
.. code-block:: text
119+
.. code-block:: text
120120
121-
https://github.com/users/<user>/packages/container/buildcache/settings
121+
https://github.com/users/<user>/packages/container/buildcache/settings
122122
123123
124124
-------------------------------

tutorial_buildsystems.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ These packages are handled by the ``MakefilePackage`` subclass which provides co
163163

164164
A ``MakefilePackage`` build has three phases that can be overridden by the packager:
165165

166-
1. ``edit()``
167-
2. ``build()``
168-
3. ``install()``
166+
1. ``edit()``
167+
2. ``build()``
168+
3. ``install()``
169169

170170
Packagers then have the ability to control how a ``Makefile`` is edited, and what targets to include for the build phase or install phase.
171171

tutorial_developer_workflows.rst

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -285,22 +285,22 @@ This command is particularly useful in developer environments—it allows develo
285285
The additional features of the install command are unnecessary when tightly iterating between building and testing a particular package.
286286
For example, the workflow modifying ``scr`` that we just went through can be simplified to:
287287

288-
.. code-block:: console
289-
290-
$ spack build-env scr -- bash
291-
# Shell wrappers didn't propagate to the subshell
292-
$ source $SPACK_ROOT/share/spack/setup-env.sh
293-
# Lets look at navigation features
294-
$ spack cd --help
295-
$ spack cd -c scr
296-
$ touch src/scr_copy.c
297-
$ spack cd -b scr
298-
# Lets look at whats here
299-
$ ls
300-
# Build and run tests
301-
$ make -j2
302-
$ make test
303-
$ exit
288+
.. code-block:: console
289+
290+
$ spack build-env scr -- bash
291+
# Shell wrappers didn't propagate to the subshell
292+
$ source $SPACK_ROOT/share/spack/setup-env.sh
293+
# Lets look at navigation features
294+
$ spack cd --help
295+
$ spack cd -c scr
296+
$ touch src/scr_copy.c
297+
$ spack cd -b scr
298+
# Lets look at whats here
299+
$ ls
300+
# Build and run tests
301+
$ make -j2
302+
$ make test
303+
$ exit
304304
305305
Working with the build environment and along with Spack navigation features provides a nice way to iterate quickly and navigate through the hash-heavy Spack directory structures.
306306

@@ -314,13 +314,13 @@ Developers can achieve builds of both cases from a single ``spack install`` as l
314314

315315
.. code-block:: console
316316
317-
# First we have to allow repeat specs in the environment
318-
$ spack config add concretizer:unify:false
319-
# Next we need to specify the specs we want ('==' propagates the variant to deps)
320-
$ spack change macsio build_type==Release
321-
$ spack add macsio+scr build_type==Debug
322-
# Inspect the graph for multiple dev_path=
323-
$ spack concretize -f
317+
# First we have to allow repeat specs in the environment
318+
$ spack config add concretizer:unify:false
319+
# Next we need to specify the specs we want ('==' propagates the variant to deps)
320+
$ spack change macsio build_type==Release
321+
$ spack add macsio+scr build_type==Debug
322+
# Inspect the graph for multiple dev_path=
323+
$ spack concretize -f
324324
325325
While we won't build out this example it illustrates how the ``dev_path`` for ``build_type=Release`` and ``build_type=Debug`` points to the same source code.
326326

tutorial_modules.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Both hierarchical and non-hierarchical deployments will be discussed in detail a
1515

1616
At the end of the tutorial readers should have a clear understanding of:
1717

18-
* What module files are and how they are used on HPC clusters
19-
* How Spack generates module files for the software it installs
20-
* Which Spack commands can be used to manage module files
21-
* How module files generated by Spack can be customized
18+
* What module files are and how they are used on HPC clusters
19+
* How Spack generates module files for the software it installs
20+
* Which Spack commands can be used to manage module files
21+
* How module files generated by Spack can be customized
2222

2323
and be confident that Spack can deal with all of the common use cases that occur when maintaining software installations on HPC clusters.
2424

0 commit comments

Comments
 (0)