Fix typos.

This commit is contained in:
John-David Dalton
2017-04-16 08:57:46 -05:00
parent 64a9975488
commit e2941dda3b
4 changed files with 7 additions and 6 deletions

View File

@@ -9,7 +9,7 @@
* @param {Object} object The object to iterate over.
* @param {Function} iteratee The function invoked per iteration.
* @returns {Object} Returns the new mapped object.
* @see mapValues
* @see mapValue
* @example
*
* mapKey({ 'a': 1, 'b': 2 }, function(value, key) {
@@ -26,4 +26,4 @@ function mapKey(object, iteratee) {
return result
}
export default mapKeys
export default mapKey