summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2018-11-01 14:22:09 -0700
committerGitHub <noreply@github.com>2018-11-01 14:22:09 -0700
commitf96e2764c4304db7eadd948ade6fef0ad6f93c7e (patch)
tree839c05577e61edd58371894c49865c745ddabf0c /doc
parenteb3c9e1d1c833933e04d2c8ecaa816e12704d961 (diff)
downloadNim-f96e2764c4304db7eadd948ade6fef0ad6f93c7e.tar.gz
nimsuggest somehow transforms \n into \\x0A, not \x0A
/cc @Araq
Diffstat (limited to 'doc')
-rw-r--r--doc/nimsuggest.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/nimsuggest.rst b/doc/nimsuggest.rst
index 0b6839b53..87d3a10dd 100644
--- a/doc/nimsuggest.rst
+++ b/doc/nimsuggest.rst
@@ -163,5 +163,5 @@ tab characters (``\t``). The values of each column are:
 
    Also, you won't find raw ``\n`` characters breaking the one
    answer per line format. Instead you will need to parse sequences
-   in the form ``\xHH``, where *HH* is a hexadecimal value (e.g.
-   newlines generate the sequence ``\x0A``).
+   in the form ``\\xHH``, where *HH* is a hexadecimal value (e.g.
+   newlines generate the sequence ``\\x0A``).