Skip to content

Commit

Permalink
v.0.43
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolainp committed Nov 10, 2023
1 parent c233d43 commit 24ff55b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datarecord/datarecord.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ func (obj *dataReader) GetDataRows() []string {
points, ok := data[columnName]

if ok {
for _, point := range points {
writer.WriteString(fmt.Sprintf(", %g", point))
for i := range points {
writer.WriteString(fmt.Sprintf(", %g", points[i]))
}
} else {
writer.WriteString(blankPoints)
Expand Down

0 comments on commit 24ff55b

Please sign in to comment.