Skip to content

Commit 0ff968b

Browse files
committed
fix
1 parent 4dae4df commit 0ff968b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

forward_engineering/utils/general.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ const prepareComment = (comment = '') => comment.replaceAll(MUST_BE_ESCAPED, ch
173173

174174
const wrapComment = (comment = '') => {
175175
const shouldBeEscaped = MUST_BE_ESCAPED.test(comment);
176-
return shouldBeEscaped ? `E'${prepareComment(comment)}'` : comment;
176+
return shouldBeEscaped ? `E'${prepareComment(comment)}'` : `'${comment}'`;
177177
};
178178

179179
const getFunctionArguments = functionArguments => {

0 commit comments

Comments
 (0)