summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2021-08-11 00:14:04 -0700
committerGitHub <noreply@github.com>2021-08-11 09:14:04 +0200
commit41ae83463e03a6fa0343b62638163819ffbba949 (patch)
tree104421c9ddba2ec5d682da0d47e0802127585c3e /lib
parent128d788363a3c9b9acc91fb019d6e51ab6ffd7c5 (diff)
downloadspack-41ae83463e03a6fa0343b62638163819ffbba949.tar.gz
spack-41ae83463e03a6fa0343b62638163819ffbba949.tar.bz2
spack-41ae83463e03a6fa0343b62638163819ffbba949.tar.xz
spack-41ae83463e03a6fa0343b62638163819ffbba949.zip
doc: def llnl.util.filesystem.find fix rst (#25350)
The star was not rendered in the docs.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/llnl/util/filesystem.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/spack/llnl/util/filesystem.py b/lib/spack/llnl/util/filesystem.py
index 3cf6553165..a81425fe96 100644
--- a/lib/spack/llnl/util/filesystem.py
+++ b/lib/spack/llnl/util/filesystem.py
@@ -1102,14 +1102,14 @@ def find(root, files, recursive=True):
Accepts any glob characters accepted by fnmatch:
- ======= ====================================
- Pattern Meaning
- ======= ====================================
- * matches everything
- ? matches any single character
- [seq] matches any character in ``seq``
- [!seq] matches any character not in ``seq``
- ======= ====================================
+ ========== ====================================
+ Pattern Meaning
+ ========== ====================================
+ ``*`` matches everything
+ ``?`` matches any single character
+ ``[seq]`` matches any character in ``seq``
+ ``[!seq]`` matches any character not in ``seq``
+ ========== ====================================
Parameters:
root (str): The root directory to start searching from