diff -r 9513fac97ddd Doc/library/pkgutil.rst --- a/Doc/library/pkgutil.rst Thu Oct 13 14:32:55 2016 -0700 +++ b/Doc/library/pkgutil.rst Fri Oct 14 12:08:31 2016 +0800 @@ -206,7 +206,8 @@ Get a resource from a package. - This is a wrapper for the :term:`loader` :func:`get_data` API. The + This is a wrapper for the :term:`loader` + :meth:`get_data ` API. The *package* argument should be the name of a package, in standard module format (``foo.bar``). The *resource* argument should be in the form of a relative filename, using ``/`` as the path separator. The parent directory name @@ -222,4 +223,5 @@ data = open(os.path.join(d, resource), 'rb').read() If the package cannot be located or loaded, or it uses a :term:`loader` - which does not support :func:`get_data`, then ``None`` is returned. + which does not support :meth:`get_data `, + then ``None`` is returned.