From 32faaab0b14f8e5140b5a6c8789a9aa1637f90e7 Mon Sep 17 00:00:00 2001 From: yowl Date: Wed, 11 Feb 2026 21:00:56 -0500 Subject: [PATCH] #1515 dont close the comment` --- crates/csharp/src/interface.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/csharp/src/interface.rs b/crates/csharp/src/interface.rs index adf5d383b..29cdfac01 100644 --- a/crates/csharp/src/interface.rs +++ b/crates/csharp/src/interface.rs @@ -1021,6 +1021,7 @@ impl InterfaceGenerator<'_> { .trim() .replace("<", "<") .replace(">", ">") + .replace("*/", "*") // We can't close the comment, so if the user comment has */ we just remove the / .lines() .map(|line| format!("* {line}")) .collect::>()