Fix use of comma instead of semicolon

Signed-off-by: Quentin Guidée <quentin.guidee@gmail.com>
This commit is contained in:
Quentin Guidée
2022-12-17 20:14:28 -05:00
parent d44d0cc0fd
commit e0f1e02cc7
3 changed files with 3 additions and 3 deletions

View File

@ -702,7 +702,7 @@ struct DiagnosticRelatedInformation {
Dictionary to_json() const {
Dictionary dict;
dict["location"] = location.to_json(),
dict["location"] = location.to_json();
dict["message"] = message;
return dict;
}