Skip to content

Commit 93d2acd

Browse files
committed
spelling
1 parent 214ebb1 commit 93d2acd

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

tutorial_environments.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,18 @@ Goals of this Tutorial
5252
----------------------
5353

5454
This tutorial will teach you the fundamentals of creating and using Spack environments.
55+
5556
We'll cover:
57+
5658
1. Command line basics -- Creating and managing environments with Spack commands.
59+
5760
2. Configuration files -- Editing ``spack.yaml`` and understanding ``spack.lock``.
61+
5862
3. Environment types -- Understanding Spack-managed vs. independent environments.
63+
5964
4. Reproducible builds -- Sharing and recreating environments across systems.
6065

66+
6167
-------------------
6268
Environment Basics
6369
-------------------
@@ -403,9 +409,9 @@ We can also add and install specs to an environment incrementally. For example:
403409
If we create environments incrementally, Spack ensures that already installed roots are not re-concretized.
404410
So, adding specs to an environment at a later point in time will not cause existing packages to rebuild.
405411

406-
Adding and installing specs incrementally leads to greedy concretization, meaning that the environment may concain different package versions compared to an environment created all at once.
412+
Adding and installing specs incrementally leads to greedy concretization, meaning that the environment may have different package versions compared to an environment created all at once.
407413

408-
When you first install ``python`` in an environment, Spack will pick a recent version for it.
414+
When you first install ``python`` in an environment, Spack will pick a recent version.
409415
If you then add ``py-numpy``, it may be in conflict with the ``python`` version already installed, and fail to concretize:
410416

411417
.. literalinclude:: outputs/environments/incremental-1.out
@@ -417,7 +423,7 @@ The solution is to re-concretize the environment as a whole, which causes ``pyth
417423
:language: console
418424

419425
.. note::
420-
There are advantages to concretizing and installing an environment all at once:
426+
There are other advantages to concretizing and installing an environment all at once:
421427

422428
* If you have a number of specs that can be installed together,
423429
adding them first and installing them together enables them to

0 commit comments

Comments
 (0)