summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-04-10 19:50:08 +0800
committerSenthil Kumaran <senthil@uthcode.com>2012-04-10 19:50:08 +0800
commit3661473ae00fd8a82dd693de8b7ca2c1c907978a (patch)
tree1e29f414d072840b3df2fe15ce0fec126dd9068f
parentad6b3f570af63acbf83348641f2ded62e21c40ea (diff)
downloadcpython-git-3661473ae00fd8a82dd693de8b7ca2c1c907978a.tar.gz
minor .rst fix
-rw-r--r--Doc/library/imp.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
index 607dd1446d..02c2cf9883 100644
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -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.