From 642f87883333a120b4bb60fe2e8e6f5ddc3ccb60 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Sun, 21 Dec 2025 16:09:01 +0100 Subject: [PATCH] improve comment in comment. --- src/musredit_qt6/mupp/var/include/PSkipper.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/musredit_qt6/mupp/var/include/PSkipper.hpp b/src/musredit_qt6/mupp/var/include/PSkipper.hpp index cb357c40..befeb19f 100644 --- a/src/musredit_qt6/mupp/var/include/PSkipper.hpp +++ b/src/musredit_qt6/mupp/var/include/PSkipper.hpp @@ -47,7 +47,7 @@ namespace mupp { namespace parser * This grammar defines what the parser should skip (ignore) between tokens. * It handles: * - Whitespace: spaces, tabs, carriage returns, line feeds - * - C-style block comments: /* comment * / + * - C-style block comments: / * comment * / * - Single-line comments: % comment, # comment, // comment * * 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 z = $x * 2.0 # another comment * var a = $z / 3.0 % yet another comment - * /* This is a + * / * This is a * multi-line comment * / * @endcode *