summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomaz Solc <tomaz.solc@tablix.org>2021-02-05 14:13:14 +0100
committerTomaz Solc <tomaz.solc@tablix.org>2021-02-05 14:13:14 +0100
commitd639c08b209ef839e205d31dafcc7c4ec46c71f4 (patch)
tree82eab1b82a20b4e61206c087ca6c16b7cf18c7cc
parent93e2f88e7fb2908f4c5c21ea9a735a4958b959a2 (diff)
downloadunidecode-d639c08b209ef839e205d31dafcc7c4ec46c71f4.tar.gz
Add missing backslashes.
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 37aeec7..9c57d85 100644
--- a/README.rst
+++ b/README.rst
@@ -188,7 +188,7 @@ Unidecode produces completely wrong results (e.g. "u" with diaeresis translitera
``repr()`` and consult the
`Unicode HOWTO <https://docs.python.org/3/howto/unicode.html>`_.
-Why does Unidecode not replace \u and \U backslash escapes in my strings?
+Why does Unidecode not replace \\u and \\U backslash escapes in my strings?
Unidecode knows nothing about escape sequences. Interpreting these sequences
and replacing them with actual Unicode characters in string literals is the
task of the Python interpreter. If you are asking this question you are