Skip to content

Commit 2b6a6cf

Browse files
vladimirostermigueldeicaza
authored andcommitted
Fixing comment tag generation (migueldeicaza#368)
1 parent 8acdb03 commit 2b6a6cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpGenerator/OpGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ string Quote (string input)
294294
var res = new StringBuilder ();
295295
foreach (var c in input) {
296296
if (c == '`') {
297-
res.Append (open ? "<c>" : "</c>");
297+
res.Append (open ? "</c>" : "<c>");
298298
open = !open;
299299
} else
300300
res.Append (c);

0 commit comments

Comments
 (0)