improve comment in comment.
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 20s

This commit is contained in:
2025-12-21 16:09:01 +01:00
parent 8852cf21cf
commit 642f878833

View File

@@ -47,7 +47,7 @@ namespace mupp { namespace parser
* This grammar defines what the parser should skip (ignore) between tokens. * This grammar defines what the parser should skip (ignore) between tokens.
* It handles: * It handles:
* - Whitespace: spaces, tabs, carriage returns, line feeds * - Whitespace: spaces, tabs, carriage returns, line feeds
* - C-style block comments: /* comment * / * - C-style block comments: / * comment * /
* - Single-line comments: % comment, # comment, // comment * - Single-line comments: % comment, # comment, // comment
* *
* The skipper is used automatically by the parser between all grammar rules, * The skipper is used automatically by the parser between all grammar rules,
@@ -58,7 +58,7 @@ namespace mupp { namespace parser
* var x = $y + 1.0 // this is a comment * var x = $y + 1.0 // this is a comment
* var z = $x * 2.0 # another comment * var z = $x * 2.0 # another comment
* var a = $z / 3.0 % yet another comment * var a = $z / 3.0 % yet another comment
* /* This is a * / * This is a
* multi-line comment * / * multi-line comment * /
* @endcode * @endcode
* *