summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
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