Skip to content

Commit 2edc844

Browse files
committed
Missing close quote
1 parent 2e644e6 commit 2edc844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/diagnostics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ namespace cpp2 {
206206
<< "\"lineno\": " << e.where.lineno << ", "
207207
<< "\"colno\": " << e.where.colno << ", "
208208
<< "\"msg\": \"" << sanitize_for_json(e.msg)
209-
<< (i < diagnostics.errors.size() ? "\"},\n" : "}\n");
209+
<< (i < diagnostics.errors.size() ? "\"},\n" : "\"}\n");
210210
}
211211

212212
// Print out the our scope's source ranges as a map/object where:

0 commit comments

Comments
 (0)