Skip to content

Commit

Permalink
Use standard , CSV separator
Browse files Browse the repository at this point in the history
  • Loading branch information
picatz committed Jan 6, 2024
1 parent eb27a55 commit 16fe589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions callgraphutil/cosmograph.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import (
// https://cosmograph.app/run/
func WriteCosmograph(graph, metadata io.Writer, g *callgraph.Graph) error {
graphWriter := csv.NewWriter(graph)
graphWriter.Comma = ';'
graphWriter.Comma = ','
defer graphWriter.Flush()

metadataWriter := csv.NewWriter(metadata)
metadataWriter.Comma = ';'
metadataWriter.Comma = ','
defer metadataWriter.Flush()

// Write header.
Expand Down

0 comments on commit 16fe589

Please sign in to comment.