Fixed missing comma in the csv dumper.
This commit is contained in:
parent
9316ae515e
commit
f694809a0d
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ fn make_values_str(pairs: &[(&'static str, &str)]) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn span_extent_str(span: SpanData) -> String {
|
fn span_extent_str(span: SpanData) -> String {
|
||||||
format!("file_name,\"{}\",file_line,{},file_col,{},byte_start,{}\
|
format!("file_name,\"{}\",file_line,{},file_col,{},byte_start,{},\
|
||||||
file_line_end,{},file_col_end,{},byte_end,{}",
|
file_line_end,{},file_col_end,{},byte_end,{}",
|
||||||
span.file_name, span.line_start, span.column_start, span.byte_start,
|
span.file_name, span.line_start, span.column_start, span.byte_start,
|
||||||
span.line_end, span.column_end, span.byte_end)
|
span.line_end, span.column_end, span.byte_end)
|
||||||
|
|
Loading…
Add table
Reference in a new issue