From 007ccdbc34355d93bf783e228a9cb7b3d6237124 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 19 Sep 2017 21:15:09 -0400 Subject: [PATCH] correct parseTime --- BUILD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.md b/BUILD.md index d9937f3..5eb16cd 100644 --- a/BUILD.md +++ b/BUILD.md @@ -474,7 +474,7 @@ For future use, let's move the `xScale` and `yScale` out of the render function ```javascript var xScale = d3.scaleTime(); -var parseTime = d3.timeParse("%B%e, %Y at%-I:%M%p"); +var parseTime = d3.timeParse("%B%e, %Y at %-I:%M%p"); xScale.range([0,WIDTH]); xDomain = d3.extent(runs, function(datum, index){ return parseTime(datum.date);