Skip to content

Commit

Permalink
Update setAccessor argument documentation. (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
braddunbar authored and developit committed Dec 11, 2016
1 parent 41a9659 commit e8c58ae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dom/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ export function removeNode(node) {
* If `value` is `null`, the attribute/handler will be removed.
* @param {Element} node An element to mutate
* @param {string} name The name/key to set, such as an event or attribute name
* @param {any} value An attribute value, such as a function to be used as an event handler
* @param {any} previousValue The last value that was set for this name/node pair
* @param {any} old The last value that was set for this name/node pair
* @param {any} value An attribute value, such as a function to be used as an event handler
* @param {Boolean} isSvg Are we currently diffing inside an svg?
* @private
*/
export function setAccessor(node, name, old, value, isSvg) {
Expand Down

0 comments on commit e8c58ae

Please sign in to comment.