diff options
author | Georg Brandl <georg@python.org> | 2013-03-23 15:00:41 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-03-23 15:00:41 (GMT) |
commit | d50fe7216d09de0eac5c4085a35173b1d5832688 (patch) | |
tree | 147ba058b74763cdc918109317dddca9fba92df6 /Doc/howto | |
parent | 47f2542462cc9d8056681a7bd664c0e17ddd3e1c (diff) | |
download | cpython-d50fe7216d09de0eac5c4085a35173b1d5832688.zip cpython-d50fe7216d09de0eac5c4085a35173b1d5832688.tar.gz cpython-d50fe7216d09de0eac5c4085a35173b1d5832688.tar.bz2 |
Fix suspicious markup in the docs.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index c361938..33963f9 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1572,7 +1572,7 @@ UTF-8, then you need to do the following: 'ASCII section\ufeffUnicode section' - The Unicode code point ``'\feff```, when encoded using UTF-8, will be + The Unicode code point U+FEFF, when encoded using UTF-8, will be encoded as a UTF-8 BOM -- the byte-string ``b'\xef\xbb\xbf'``. #. Replace the ASCII section with whatever placeholders you like, but make sure |