- Don't recognise an `@return` with an empty description
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-16 21:22:17 +02:00
parent 0b927e93e4
commit cc87c8048c
1 changed files with 6 additions and 0 deletions

View File

@ -244,6 +244,12 @@ private class CommentParser
bool foundDescription;
while(getch(c))
{
if(c == ' ' && !foundDescription)
{
prog;
continue;
}
gotDescription ~= c;
prog;
foundDescription = true;