Merged revisions 77298 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77298 | ezio.melotti | 2010-01-04 11:00:11 +0200 (Mon, 04 Jan 2010) | 1 line

  fixed markup errors
........
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 6b14dff..6741db7 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -142,7 +142,7 @@
 .. function:: compile(source, filename, mode, flags=0, dont_inherit=False)
 
    Compile the *source* into a code or AST object.  Code objects can be executed
-   by:func:`exec` or :func:`eval`.  *source* can either be a string or an AST
+   by :func:`exec` or :func:`eval`.  *source* can either be a string or an AST
    object.  Refer to the :mod:`ast` module documentation for information on how
    to work with AST objects.