Skip to content

Commit 31048d2

Browse files
authored
Fix punctuation and formatting in spack_demo.md (#250)
1 parent 3b4ca77 commit 31048d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

03_building_and_packaging/spack_demo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ To make things simpler from Step 2 onwards, create a container from the [spack/u
7070
spack install --reuse zlib
7171
```
7272

73-
This installs the package `zlib` by downloading and compiling it. `--reuse` tells spack to reuse already existing packages if possible
73+
This installs the package `zlib` by downloading and compiling it. `--reuse` tells spack to reuse already existing packages if possible.
7474

7575
- List installed packages
7676

@@ -90,7 +90,7 @@ To make things simpler from Step 2 onwards, create a container from the [spack/u
9090

9191
Spack will fetch the archive and try to deduce some basic settings. It will also check for other releases and asks whether to add checksums. We want all checksums.
9292

93-
- Spack immediately drops you in a boilerplate package file.
93+
- Spack immediately drops you in a boilerplate package file
9494

9595
```Python
9696
class Helloworld(CMakePackage):
@@ -126,7 +126,7 @@ To make things simpler from Step 2 onwards, create a container from the [spack/u
126126
- There are 3 releases of the software
127127
- The URL to download the package
128128
- The name of the package we work with `class Helloworld`. This is also the name of the software now within Spack.
129-
- We want to fix/extend the package with some standard information
129+
- We want to fix/extend the package with some standard information.
130130
- Package description
131131
- Set URL to SSE homepage
132132
- Add GitHub username as maintainer
@@ -174,15 +174,15 @@ To make things simpler from Step 2 onwards, create a container from the [spack/u
174174
spack install [email protected]
175175
```
176176

177-
This will concretize (internally, i.e. no output on terminal) and then build the software.
177+
This will concretize (internally, i.e., no output on terminal) and then build the software.
178178

179179
- If one wants to edit the package later, there are two options
180180

181181
```bash
182182
spack edit helloworld
183183
```
184184

185-
or open `package.py` file in `.spack/package_repos/fncqgg4/repos/spack_repo/builtin/packages/helloworld/package.py`
185+
or open `package.py` file in `.spack/package_repos/fncqgg4/repos/spack_repo/builtin/packages/helloworld/package.py`.
186186

187187
- Add the `main` branch as a version
188188

0 commit comments

Comments
 (0)