Skip to content

Commit

Permalink
Fix docs for new methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Stillesjö committed Jun 1, 2016
1 parent 4d1188f commit f06a293
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pie-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,8 @@ dc.pieChart = function (parent, chartGroup) {
* @method emptyValue
* @memberof dc.pieChart
* @instance
* @param {String} [value]
* @return {String}
* @param {*} [value]
* @return {*}
* @return {dc.pieChart}
*/
_chart.emptyValue = function (value) {
Expand All @@ -501,12 +501,12 @@ dc.pieChart = function (parent, chartGroup) {
};

/**
* Value to use for the only slice when there is no data.
* Others to use for the only slice when there is no data.
* @method emptyOthers
* @memberof dc.pieChart
* @instance
* @param {String} [others]
* @return {String}
* @param {Array} [others]
* @return {Array}
* @return {dc.pieChart}
*/
_chart.emptyOthers = function (others) {
Expand Down

0 comments on commit f06a293

Please sign in to comment.