diff -r 6c6f7dff597b Doc/library/pathlib.rst --- a/Doc/library/pathlib.rst Mon Feb 15 17:50:33 2016 +0100 +++ b/Doc/library/pathlib.rst Mon Feb 15 21:53:21 2016 -0500 @@ -717,7 +717,7 @@ .. method:: Path.glob(pattern) - Glob the given *pattern* in the directory represented by this path, + Glob the given relative *pattern* in the directory represented by this path, yielding all matching files (of any kind):: >>> sorted(Path('.').glob('*.py')) @@ -951,8 +951,8 @@ .. method:: Path.rglob(pattern) - This is like calling :meth:`glob` with "``**``" added in front of the - given *pattern*: + This is like calling :func:`Path.glob` with "``**/``" added in front of the + given relative *pattern*: >>> sorted(Path().rglob("*.py")) [PosixPath('build/lib/pathlib.py'),