From 7c888d59b6fc83fa697b7a9b106b59fac4891a03 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 21 Nov 2018 16:22:47 +0100 Subject: [PATCH] Fix examples of basic values in Builtin.Syntax --- backend/Builtin/Syntax.icl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Builtin/Syntax.icl b/backend/Builtin/Syntax.icl index 369842c..41ff13f 100644 --- a/backend/Builtin/Syntax.icl +++ b/backend/Builtin/Syntax.icl @@ -94,7 +94,7 @@ bs_basicvalues = , "(052, -052, +052) // Tuple with 42, -42 and 42 in octal notation" , "(0x2a, -0x2a, +0x2A) // Tuple with 42, -42 and 42 in hexadecimal notation" , "('a', '\\x2a', '\\052') // Tuple with a normal character and twice the character with ASCII value 42" - , "['\\n', '\\r', '\\f', '\\b', '\\t', '\\v', '\\', '\\'', '\\\"']\n" + + , "['\\n', '\\r', '\\f', '\\b', '\\t', '\\v', '\\\\', '\\'', '\\\"']\n" + " // All character escapes" , "(42.0, -42.0, 42E-10, +42.0E+10, -42.0E10)\n" + " // Several reals" -- GitLab