[Python-checkins] r81197 - python/branches/py3k/Doc/c-api/unicode.rst

benjamin.peterson python-checkins at python.org
Sat May 15 19:42:02 CEST 2010


Author: benjamin.peterson
Date: Sat May 15 19:42:02 2010
New Revision: 81197

Log:
fix run-on sentence

Modified:
   python/branches/py3k/Doc/c-api/unicode.rst

Modified: python/branches/py3k/Doc/c-api/unicode.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/unicode.rst	(original)
+++ python/branches/py3k/Doc/c-api/unicode.rst	Sat May 15 19:42:02 2010
@@ -408,7 +408,7 @@
 .. cfunction:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
 
    Encode a Unicode object to :cdata:`Py_FileSystemDefaultEncoding` with the
-   ``'surrogateescape'`` error handler, return a :func:`bytes` object.
+   ``'surrogateescape'`` error handler, and return :class:`bytes`.
 
    If :cdata:`Py_FileSystemDefaultEncoding` is not set, fall back to UTF-8.
 


More information about the Python-checkins mailing list