Skip to content

Commit f694809

Browse files
committed
Fixed missing comma in the csv dumper.
1 parent 9316ae5 commit f694809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_save_analysis/csv_dumper.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ fn make_values_str(pairs: &[(&'static str, &str)]) -> String {
427427
}
428428

429429
fn span_extent_str(span: SpanData) -> String {
430-
format!("file_name,\"{}\",file_line,{},file_col,{},byte_start,{}\
430+
format!("file_name,\"{}\",file_line,{},file_col,{},byte_start,{},\
431431
file_line_end,{},file_col_end,{},byte_end,{}",
432432
span.file_name, span.line_start, span.column_start, span.byte_start,
433433
span.line_end, span.column_end, span.byte_end)

0 commit comments

Comments
 (0)