summaryrefslogtreecommitdiff
path: root/lib/spack/docs/developer_guide.rst
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/docs/developer_guide.rst')
-rw-r--r--lib/spack/docs/developer_guide.rst25
1 files changed, 10 insertions, 15 deletions
diff --git a/lib/spack/docs/developer_guide.rst b/lib/spack/docs/developer_guide.rst
index 0942fdd9c3..5ddbaf2478 100644
--- a/lib/spack/docs/developer_guide.rst
+++ b/lib/spack/docs/developer_guide.rst
@@ -250,30 +250,25 @@ Unit tests
Other Modules
^^^^^^^^^^^^^
-:mod:`spack.globals`
- Includes global settings for Spack. the default policy classes for
- things like :ref:`temporary space <temp-space>` and
- :ref:`concretization <concretization-policies>`.
+:mod:`spack.url`
+ URL parsing, for deducing names and versions of packages from
+ tarball URLs.
+
+:mod:`spack.error`
+ :class:`SpackError <spack.error.SpackError>`, the base class for
+ Spack's exception hierarchy.
-:mod:`spack.tty`
+:mod:`llnl.util.tty`
Basic output functions for all of the messages Spack writes to the
terminal.
-:mod:`spack.color`
+:mod:`llnl.util.tty.color`
Implements a color formatting syntax used by ``spack.tty``.
-:mod:`spack.url`
- URL parsing, for deducing names and versions of packages from
- tarball URLs.
-
-:mod:`spack.util`
+:mod:`llnl.util`
In this package are a number of utility modules for the rest of
Spack.
-:mod:`spack.error`
- :class:`SpackError <spack.error.SpackError>`, the base class for
- Spack's exception hierarchy.
-
------------
Spec objects
------------