changeset 237:c4e8c7010ca0

FIX: Syntax description of "Explicit Token Types". Backslash was doubled erroneously in the output.
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 16 May 2026 00:20:58 +0200
parents 28639bddddd0
children b60d719f7cde
files docs/lexer-algpseudocode.rst
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/docs/lexer-algpseudocode.rst	Fri May 15 23:53:40 2026 +0200
+++ b/docs/lexer-algpseudocode.rst	Sat May 16 00:20:58 2026 +0200
@@ -443,22 +443,22 @@
 Its corresponding token type (the associated `key` in this `dict`) is
 used as token type.
 
-``\\tt-XX/SINGLE-CHAR``
+``\tt-XX/SINGLE-CHAR``
 
   no escaping needed
 
   `SINGLE-CHAR` is a single character and can be *every* character
   (including a carriage-return or line-feed)
 
-``\\ttx-XX{CHARACTERS}``
+``\ttx-XX{CHARACTERS}``
 
-``\\ttx-XX(CHARACTERS)``
+``\ttx-XX(CHARACTERS)``
 
-``\\ttx-XX[CHARACTERS]``
+``\ttx-XX[CHARACTERS]``
 
-``\\ttx-XX<CHARACTERS>``
+``\ttx-XX<CHARACTERS>``
 
-``\\ttx-XX<SEP>CHARACTERS<SEP>``
+``\ttx-XX<SEP>CHARACTERS<SEP>``
 
   No escaping possible! There are enough alternatives available!