The r in `rglob` stands for "recursively", so use the word in the description. Also, glob and rglob can usefully be mentioned as the pathlib equivalent of os.walk.
Automerge-Triggered-By: GH:brettcannon
.. method:: Path.rglob(pattern)
- This is like calling :func:`Path.glob` with "``**/``" added in front of the
- given relative *pattern*::
+ Glob the given relative *pattern* recursively. This is like calling
+ :func:`Path.glob` with "``**/``" added in front of the *pattern*::
>>> sorted(Path().rglob("*.py"))
[PosixPath('build/lib/pathlib.py'),