Skip to content

Commit

Permalink
comma to semicolon
Browse files Browse the repository at this point in the history
fixes error on circles example
  • Loading branch information
RMKD committed Oct 4, 2015
1 parent 28573b3 commit a9d726e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Native/D3/Color.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Elm.Native.D3.Color.make = function(elm) {
}

function elm_convert(typ, color) {
return typeof color[typ] == 'function' ? color[typ]() : d3[typ](color),
return typeof color[typ] == 'function' ? color[typ]() : d3[typ](color);
}

function elm_fromString(str) {
Expand Down

0 comments on commit a9d726e

Please sign in to comment.