Skip to content

Commit b98831a

Browse files
committed
Fix command-line to "command line"
1 parent 0793325 commit b98831a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

tutorial_basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ We will clone Spack and immediately check out the most recent release, v0.23.
2929
:language: console
3030

3131
Next, add Spack to your path.
32-
Spack has some nice command-line integration tools, so instead of simply prepending to your ``PATH`` variable, source the Spack setup script.
32+
Spack has some nice command line integration tools, so instead of simply prepending to your ``PATH`` variable, source the Spack setup script.
3333

3434
.. code-block:: console
3535

tutorial_buildsystems.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Which is similar to invoking ``make`` in our Package
114114
115115
make("foo")
116116
117-
This is useful if we have packages that ignore environment variables and need a command-line argument.
117+
This is useful if we have packages that ignore environment variables and need a command line argument.
118118

119119
Another thing to take note of is in the ``configure()`` method in ``AutotoolsPackage``.
120120
Here we see that the ``--prefix`` argument is already included since it is a common pattern amongst packages using ``Autotools``.
@@ -273,7 +273,7 @@ Let's change the build and install phases of our package:
273273
:linenos:
274274

275275
Here we demonstrate another strategy that we can use to manipulate our package's build.
276-
We can provide command-line arguments to ``make()``.
276+
We can provide command line arguments to ``make()``.
277277
Since ``Bowtie`` can use ``tbb`` we can either add ``NO_TBB=1`` as a argument to prevent ``tbb`` support, or we can invoke ``make`` with no arguments if TBB is desired and found by its build system.
278278

279279
``Bowtie`` requires our ``install_target`` to provide a path to the install directory.

tutorial_scripting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You can generate that output with the following command:
4545

4646
Note that ``name``, ``version``, and ``hash`` are attributes of Spack's internal ``Spec`` object and enclosing them in braces ensures they are output according to your format string.
4747

48-
Using ``spack find --format`` allows you to retrieve just the information you need to do things like pipe the output to typical UNIX command-line tools like ``sort`` or ``uniq``.
48+
Using ``spack find --format`` allows you to retrieve just the information you need to do things like pipe the output to typical UNIX command line tools like ``sort`` or ``uniq``.
4949

5050
^^^^^^^^^^^^^^^^^^^^^
5151
``spack find --json``

0 commit comments

Comments
 (0)