Even more tag cleanup.

This commit is contained in:
John-David Dalton
2017-01-18 23:58:17 -08:00
parent 73df84c0b4
commit ee1c64fafe
12 changed files with 12 additions and 12 deletions

View File

@@ -11,7 +11,7 @@ import unzipWith from './unzipWith.js';
* @param {Function} iteratee The function to combine
* grouped values.
* @returns {Array} Returns the new array of grouped elements.
* @see zip, zipObject, zipObjectDeep, zipWith, unzip, unzipWith
* @see unzip, unzipWith, zip, zipObject, zipObjectDeep, zipWith
* @example
*
* zipWith([1, 2], [10, 20], [100, 200], (a, b, c) => a + b + c);