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:24:35 -0700
committerTimothee Cour <timothee.cour2@gmail.com>2018-11-01 14:29:18 -0700
commitd294cec8050dd5716707bbf51bb60877b50a5066 (patch)
treecd0ef6b4ca4a182e7cc665788c37dfd0de5f562c /doc
parentf96e2764c4304db7eadd948ade6fef0ad6f93c7e (diff)
downloadNim-d294cec8050dd5716707bbf51bb60877b50a5066.tar.gz
Revert "nimsuggest somehow transforms \n into \\x0A, not \x0A"
This reverts commit f96e2764c4304db7eadd948ade6fef0ad6f93c7e.
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 87d3a10dd..0b6839b53 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``).