summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-10-01 01:02:39 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-10-01 01:02:39 +0300
commit06a8ac0f26e722c92abd73780bcd155d17865436 (patch)
tree830311791c34f0896130766e696bae9ee2b600ff
parent30eee4deec169ff560bfbe130bab483d173ba35e (diff)
downloadcpython-git-06a8ac0f26e722c92abd73780bcd155d17865436.tar.gz
Fix Path.glob() link, reported by SilentGhost
-rw-r--r--Doc/library/pathlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst
index 384611c791..a6ad156883 100644
--- a/Doc/library/pathlib.rst
+++ b/Doc/library/pathlib.rst
@@ -934,7 +934,7 @@ call fails (for example because the path doesn't exist):
.. method:: Path.rglob(pattern)
- This is like calling :meth:`glob` with "``**``" added in front of the
+ This is like calling :meth:`Path.glob` with "``**``" added in front of the
given *pattern*:
>>> sorted(Path().rglob("*.py"))