Skip to content

Commit 59632e0

Browse files
committed
Fix bulk parsing not working.
1 parent b5f7078 commit 59632e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

WCSharp.IO.JassDoc/Parsing/JassDocParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static async Task<JassApi> ParseDocAsync(params JassDocTarget[] targets)
4444
content = await response.Content.ReadAsStringAsync();
4545
}
4646

47-
return ParseDoc(content, sourceFileName);
47+
result.Merge(ParseDoc(content, sourceFileName));
4848
}
4949

5050
return result;

0 commit comments

Comments
 (0)