From f96e2764c4304db7eadd948ade6fef0ad6f93c7e Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Thu, 1 Nov 2018 14:22:09 -0700 Subject: [PATCH] nimsuggest somehow transforms \n into \\x0A, not \x0A /cc @Araq --- doc/nimsuggest.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/nimsuggest.rst b/doc/nimsuggest.rst index 0b6839b537..87d3a10dd5 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``).