diff --git a/nodejs/src/helpers/csharpSyntax.ts b/nodejs/src/helpers/csharpSyntax.ts index 4b8520e..c2c19bf 100644 --- a/nodejs/src/helpers/csharpSyntax.ts +++ b/nodejs/src/helpers/csharpSyntax.ts @@ -28,7 +28,7 @@ export function toCsharpComment(text: string): SafeString { if(text === undefined || text === null || text === "") { return new SafeString(""); } - return new SafeString(`/// ${text.replace(/\r?\n|\r/g, " ")}`); + return new SafeString(`/// ${text.replace(/\r?\n|\r/g, " ")}`); } catch(e) { logger.error("toCsharpComment", e); throw e;