doc: def llnl.util.filesystem.find fix rst (#25350)
The star was not rendered in the docs.
This commit is contained in:
parent
128d788363
commit
41ae83463e
1 changed files with 8 additions and 8 deletions
|
@ -1102,14 +1102,14 @@ def find(root, files, recursive=True):
|
||||||
|
|
||||||
Accepts any glob characters accepted by fnmatch:
|
Accepts any glob characters accepted by fnmatch:
|
||||||
|
|
||||||
======= ====================================
|
========== ====================================
|
||||||
Pattern Meaning
|
Pattern Meaning
|
||||||
======= ====================================
|
========== ====================================
|
||||||
* matches everything
|
``*`` matches everything
|
||||||
? matches any single character
|
``?`` matches any single character
|
||||||
[seq] matches any character in ``seq``
|
``[seq]`` matches any character in ``seq``
|
||||||
[!seq] matches any character not in ``seq``
|
``[!seq]`` matches any character not in ``seq``
|
||||||
======= ====================================
|
========== ====================================
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
root (str): The root directory to start searching from
|
root (str): The root directory to start searching from
|
||||||
|
|
Loading…
Reference in a new issue