Merge pull request #13028 from cdrainxv/fix/short-fix-description

Added a comma to separate x and y coordinates pairs
This commit is contained in:
Samuel Plumppu
2017-02-01 17:32:57 +01:00
committed by GitHub

View File

@ -2104,7 +2104,7 @@
" .data(dataset)",
" .enter()",
" .append(\"text\")",
" .text((d) => (d[0] + ",
" .text((d) => (d[0] + \", \"",
" + d[1]))",
" // Add your code below this line",
" ",
@ -2276,4 +2276,4 @@
}
}
]
}
}