fix linting

pull/11951/head
Steven Powell 2021-07-14 10:14:34 -07:00
parent bcfddca2c6
commit d7cba4886a
1 changed files with 2 additions and 2 deletions

View File

@ -167,8 +167,8 @@ func createChart(benchmarks []benchmark, chartOutputPath string) {
} }
for _, xyValue := range xyValues { for _, xyValue := range xyValues {
xy := &(*xyValue.xys)[i] xy := &(*xyValue.xys)[i]
(*xy).Y = xyValue.value xy.Y = xyValue.value
(*xy).X = date xy.X = date
} }
} }