Skip to content

Commit

Permalink
fixes select default value in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Jul 2, 2016
1 parent 1c9f245 commit e51319b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/legend.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ function(w, h) {
/**
@memberof shape
@desc If *selector* is specified, sets the SVG container element to the specified d3 selector or DOM element and returns this generator. If *selector* is not specified, returns the current SVG container element.
@param {String|HTMLElement} [*selector* = d3Select("body").append("svg")]
@param {String|HTMLElement} [*selector* = d3.select("body").append("svg")]
*/
shape.select = function(_) {
return arguments.length ? (select = d3Select(_), shape) : select;
Expand Down

0 comments on commit e51319b

Please sign in to comment.