doc: def llnl.util.filesystem.find fix rst (#25350)

The star was not rendered in the docs.
This commit is contained in:
Axel Huebl 2021-08-11 00:14:04 -07:00 committed by GitHub
parent 128d788363
commit 41ae83463e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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