The documentation for `rglob` did not mention what `pattern` actually
is.
Mentioning and linking to `fnmatch` makes this explicit, as the
documentation for `fnmatch` both shows the syntax and some explanation.
.. method:: Path.rglob(pattern)
Glob the given relative *pattern* recursively. This is like calling
- :func:`Path.glob` with "``**/``" added in front of the *pattern*::
+ :func:`Path.glob` with "``**/``" added in front of the *pattern*, where
+ *patterns* are the same as for :mod:`fnmatch`::
>>> sorted(Path().rglob("*.py"))
[PosixPath('build/lib/pathlib.py'),