Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Mar 11, 2015
1 parent cbdd92f commit 9ad55ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var compat = module.exports = {

//just mutate if pre 0.13
_.each(props,
(value, prop) => child.props[key] = value)
(value, prop) => child.props[prop] = value)

return child
}
Expand Down
1 change: 1 addition & 0 deletions test/util.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ delete require.cache[require.resolve('../src/util/_')]
var React = require('react')
, filters = require('../src/util/filter')
, _ = require('../src/util/_')
, compat = require('../src/util/compat')
, propTypes = require('../src/util/propTypes')
, validateList = require('../src/util/validateListInterface');

Expand Down

0 comments on commit 9ad55ac

Please sign in to comment.