Skip to content

Commit 0c52476

Browse files
authored
Fix command-line to "command line" (#447)
* Fix command-line to "command line" * Fix uppercase variants as well
1 parent 56da0ce commit 0c52476

4 files changed

Lines changed: 6 additions & 6 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_configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A partial list of some key configuration sections is provided below.
2727
* - compilers
2828
- Define the compilers that Spack can use (required and system specific)
2929
* - Mirrors
30-
- Locations where spack can look for stashed source or binary distributions
30+
- Locations where spack can look for stashed source or binary distributions
3131
* - Packages
3232
- Specific settings and rules for packages
3333
* - Modules
@@ -97,7 +97,7 @@ These scopes, in order of decreasing priority, are:
9797
============ ===================================================
9898
Scope Directory
9999
============ ===================================================
100-
Command-line N/A
100+
Command Line N/A
101101
Environment In environment base directory (in ``spack.yaml``)
102102
Custom Custom directory, specified with ``--config-scope``
103103
User ``~/.spack/``

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)