summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2020-11-30 08:28:07 -0800
committerGitHub <noreply@github.com>2020-11-30 10:28:07 -0600
commitbb9f5d613cc6e1796222d164aacb17adc622d28f (patch)
tree2b2c1b5a5d7cd1b9f7c5f6d4198040b37bd29118 /lib
parent868dbb24c117d719702a928f1e068508a9120264 (diff)
downloadspack-bb9f5d613cc6e1796222d164aacb17adc622d28f.tar.gz
spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.tar.bz2
spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.tar.xz
spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.zip
Typos: add missing closing parens (#20174)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/docs/build_systems/pythonpackage.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/docs/build_systems/pythonpackage.rst b/lib/spack/docs/build_systems/pythonpackage.rst
index c2da0281f0..ef06725e01 100644
--- a/lib/spack/docs/build_systems/pythonpackage.rst
+++ b/lib/spack/docs/build_systems/pythonpackage.rst
@@ -324,21 +324,21 @@ mentions that Python 3 is required, this can be specified as:
.. code-block:: python
- depends_on('python@3:', type=('build', 'run')
+ depends_on('python@3:', type=('build', 'run'))
If Python 2 is required, this would look like:
.. code-block:: python
- depends_on('python@:2', type=('build', 'run')
+ depends_on('python@:2', type=('build', 'run'))
If Python 2.7 is the only version that works, you can use:
.. code-block:: python
- depends_on('python@2.7:2.8', type=('build', 'run')
+ depends_on('python@2.7:2.8', type=('build', 'run'))
The documentation may not always specify supported Python versions.