Skip to content

Commit

Permalink
Editorial: narrow the return type of insertCell()
Browse files Browse the repository at this point in the history
Fixes #2487.
  • Loading branch information
saschanaz authored and annevk committed Mar 31, 2017
1 parent cdbd779 commit ee74433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source
Expand Up @@ -39816,7 +39816,7 @@ interface <dfn>HTMLTableRowElement</dfn> : <span>HTMLElement</span> {
readonly attribute long <span data-x="dom-tr-rowIndex">rowIndex</span>;
readonly attribute long <span data-x="dom-tr-sectionRowIndex">sectionRowIndex</span>;
[SameObject] readonly attribute <span>HTMLCollection</span> <span data-x="dom-tr-cells">cells</span>;
<span>HTMLElement</span> <span data-x="dom-tr-insertCell">insertCell</span>(optional long index = -1);
<span>HTMLTableCellElement</span> <span data-x="dom-tr-insertCell">insertCell</span>(optional long index = -1);
[<span>CEReactions</span>] void <span data-x="dom-tr-deleteCell">deleteCell</span>(long index);
};</pre>
</dd>
Expand Down

0 comments on commit ee74433

Please sign in to comment.