diff options
author | Gabi Nagy <gabrian.nagy@gmail.com> | 2022-05-13 14:15:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 14:15:20 (GMT) |
commit | 57da3ff586c66a8d08abbee37736b9fb6f0b7112 (patch) | |
tree | f5848a08c4926b76e4937780e11d3679c2ef128c | |
parent | b39f841047eb9d084e4873050e4d0226cb58eb6f (diff) | |
download | cpython-57da3ff586c66a8d08abbee37736b9fb6f0b7112.zip cpython-57da3ff586c66a8d08abbee37736b9fb6f0b7112.tar.gz cpython-57da3ff586c66a8d08abbee37736b9fb6f0b7112.tar.bz2 |
Fix small typo (#92721)
-rw-r--r-- | Doc/library/glob.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index 01ad677..d51fd0e 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -49,7 +49,7 @@ For example, ``'[?]'`` matches the character ``'?'``. symlinks are included in the results (as in the shell). Whether or not the results are sorted depends on the file system. If a file that satisfies conditions is removed or added during the call of this function, whether - a path name for that file be included is unspecified. + a path name for that file will be included is unspecified. If *root_dir* is not ``None``, it should be a :term:`path-like object` specifying the root directory for searching. It has the same effect on |