Skip to content

Commit

Permalink
missing semi
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil committed Jan 4, 2021
1 parent 8a90e01 commit e35caca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/plots/walmart.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default async function() {
// Each facet *J* references a certain number of years (1 in this example);
// we use the min as a comparison point (we could use data[J[0]] in this example).
const minYear = d3.min(J, j => data[j]);
return I.filter(i => filter(walmart[i].year, minYear))
return I.filter(i => filter(walmart[i].year, minYear));
})
};
};
Expand Down

0 comments on commit e35caca

Please sign in to comment.