From da4c6172d4de67308ee82f0790230c4f747e8897 Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Sat, 21 Jun 2025 18:18:36 +0200 Subject: [PATCH] change comments to use `#` instead of `//` in tx now --- src/debug/console.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/console.rs b/src/debug/console.rs index 4b2709a..770c8aa 100644 --- a/src/debug/console.rs +++ b/src/debug/console.rs @@ -122,7 +122,7 @@ pub fn exec_script( }; for (line_nr, line) in file.lines().enumerate() { - if !line.trim().is_empty() && !line.trim().starts_with("//") { + if !line.trim().is_empty() && !line.trim().starts_with("#") { match respond(line) { Ok(ev) => { dbg_writer.write(ev);