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::>()