Skip to content

Commit

Permalink
remove redundant word (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
seemantk authored Jan 11, 2022
1 parent 3446779 commit 6d96d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ If a *row* conversion function is specified, the specified function is invoked f
```js
const data = d3.csvParseRows(string, (d, i) => {
return {
year: new Date(+d[0], 0, 1), // convert first colum column to Date
year: new Date(+d[0], 0, 1), // convert first column to Date
make: d[1],
model: d[2],
length: +d[3] // convert fourth column to number
Expand Down

0 comments on commit 6d96d6c

Please sign in to comment.