Skip to content

Commit

Permalink
fix wrong method name in docs
Browse files Browse the repository at this point in the history
fixes #1009
  • Loading branch information
gordonwoodhull committed Sep 18, 2015
1 parent b2af871 commit 3542f38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/data-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ dc.dataTable = function (parent, chartGroup) {
* Get or set if group rows will be shown.
*
* The .group() getter-setter must be provided in either case.
* @name order
* @name showGroups
* @memberof dc.dataTable
* @instance
* @example
Expand Down
8 changes: 4 additions & 4 deletions web/docs/api-latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ chart.width(300)
* [.columns](#dc.dataTable+columns) ⇒ <code>Chart</code>
* [.sortBy](#dc.dataTable+sortBy) ⇒ <code>Chart</code>
* [.order](#dc.dataTable+order) ⇒ <code>Chart</code>
* [.order](#dc.dataTable+order) ⇒ <code>Chart</code>
* [.showGroups](#dc.dataTable+showGroups) ⇒ <code>Chart</code>
* [.dataGrid](#dc.dataGrid) ⇒ <code>DataGrid</code>
* [.beginSlice](#dc.dataGrid+beginSlice) ⇒ <code>Chart</code>
* [.endSlice](#dc.dataGrid+endSlice) ⇒ <code>Chart</code>
Expand Down Expand Up @@ -2507,7 +2507,7 @@ Examples:
* [.columns](#dc.dataTable+columns) ⇒ <code>Chart</code>
* [.sortBy](#dc.dataTable+sortBy) ⇒ <code>Chart</code>
* [.order](#dc.dataTable+order) ⇒ <code>Chart</code>
* [.order](#dc.dataTable+order) ⇒ <code>Chart</code>
* [.showGroups](#dc.dataTable+showGroups) ⇒ <code>Chart</code>
<a name="dc.dataTable+size"></a>
#### dataTable.size ⇒ <code>Chart</code>
Expand Down Expand Up @@ -2619,8 +2619,8 @@ Get or set sort order.
```js
chart.order(d3.descending);
```
<a name="dc.dataTable+order"></a>
#### dataTable.order ⇒ <code>Chart</code>
<a name="dc.dataTable+showGroups"></a>
#### dataTable.showGroups ⇒ <code>Chart</code>
Get or set if group rows will be shown.
The .group() getter-setter must be provided in either case.
Expand Down

0 comments on commit 3542f38

Please sign in to comment.