Skip to content

Commit

Permalink
Merge pull request #19 from RMKD/master
Browse files Browse the repository at this point in the history
comma to semicolon
  • Loading branch information
seliopou committed Oct 5, 2015
2 parents 28573b3 + a9d726e commit 923a5df
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 923a5df

Please sign in to comment.