]> granicus.if.org Git - python/commitdiff
minor .rst fix
authorSenthil Kumaran <senthil@uthcode.com>
Tue, 10 Apr 2012 11:50:08 +0000 (19:50 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Tue, 10 Apr 2012 11:50:08 +0000 (19:50 +0800)
Doc/library/imp.rst

index 607dd1446d1210a616cf9a2de382e1a3d18718b2..02c2cf98837adb06e2179906ad43af0be9b41b64 100644 (file)
@@ -65,7 +65,7 @@ This module provides an interface to the mechanisms used to implement the
    path and the last item in the *description* tuple is :const:`PKG_DIRECTORY`.
 
    This function does not handle hierarchical module names (names containing
-   dots).  In order to find *P*.*M*, that is, submodule *M* of package *P*, use
+   dots).  In order to find *P.M*, that is, submodule *M* of package *P*, use
    :func:`find_module` and :func:`load_module` to find and load package *P*, and
    then use :func:`find_module` with the *path* argument set to ``P.__path__``.
    When *P* itself has a dotted name, apply this recipe recursively.