1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed documentation on member with attributes

This commit is contained in:
Brian Fiete 2020-10-21 09:34:08 -07:00
parent 49788037cc
commit bf5e689029
3 changed files with 28 additions and 7 deletions

View file

@ -82,13 +82,15 @@ namespace IDE.ui
continue;
}
if (c == '\x04')
if ((c == '\x04') || (c == '\x05'))
{
queuedSpace = false;
atLineStart = true;
lineHadStar = false;
lineHadContent = false;
mDocString.Append('\n');
if (c == '\x05')
mDocString.Append(" ");
continue;
}