From ee1c64fafef34784b7c146f65ed88f346ffca9a5 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 18 Jan 2017 23:58:17 -0800 Subject: [PATCH] Even more tag cleanup. --- escape.js | 2 +- unzip.js | 2 +- upperCase.js | 2 +- upperFirst.js | 2 +- without.js | 2 +- xor.js | 2 +- xorBy.js | 2 +- xorWith.js | 2 +- zip.js | 2 +- zipObject.js | 2 +- zipObjectDeep.js | 2 +- zipWith.js | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/escape.js b/escape.js index eab6514cb..a7e5ff8cb 100644 --- a/escape.js +++ b/escape.js @@ -34,7 +34,7 @@ const reHasUnescapedHtml = RegExp(reUnescapedHtml.source); * @category String * @param {string} [string=''] The string to escape. * @returns {string} Returns the escaped string. - * @see unescape, escapeRegExp + * @see escapeRegExp, unescape * @example * * escape('fred, barney, & pebbles'); diff --git a/unzip.js b/unzip.js index 94f5d3c67..838f15261 100644 --- a/unzip.js +++ b/unzip.js @@ -16,7 +16,7 @@ const nativeMax = Math.max; * @category Array * @param {Array} array The array of grouped elements to process. * @returns {Array} Returns the new array of regrouped elements. - * @see zip, zipObject, zipObjectDeep, zipWith, unzipWith + * @see unzipWith, zip, zipObject, zipObjectDeep, zipWith * @example * * const zipped = zip(['a', 'b'], [1, 2], [true, false]); diff --git a/upperCase.js b/upperCase.js index 3b4eae96f..e79004a31 100644 --- a/upperCase.js +++ b/upperCase.js @@ -7,7 +7,7 @@ import createCompounder from './.internal/createCompounder.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the upper cased string. - * @see lowerCase, upperFirst, camelCase, kebabCase, snakeCase, startCase + * @see camelCase, kebabCase, lowerCase, snakeCase, startCase, upperFirst * @example * * upperCase('--foo-bar'); diff --git a/upperFirst.js b/upperFirst.js index 4f2998a5e..bb86546b4 100644 --- a/upperFirst.js +++ b/upperFirst.js @@ -7,7 +7,7 @@ import createCaseFirst from './.internal/createCaseFirst.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the converted string. - * @see upperCase, lowerCase, camelCase, kebabCase, snakeCase, startCase + * @see camelCase, kebabCase, lowerCase, snakeCase, startCase, upperCase * @example * * upperFirst('fred'); diff --git a/without.js b/without.js index 3ac48663d..8244dbbf7 100644 --- a/without.js +++ b/without.js @@ -13,7 +13,7 @@ import isArrayLikeObject from './isArrayLikeObject.js'; * @param {Array} array The array to inspect. * @param {...*} [values] The values to exclude. * @returns {Array} Returns the new array of filtered values. - * @see difference, xor, xorBy, xorWith, union, unionBy, unionWith + * @see difference, union, unionBy, unionWith, xor, xorBy, xorWith * @example * * without([2, 1, 2, 3], 1, 2); diff --git a/xor.js b/xor.js index 6feaa04f9..a3d487a03 100644 --- a/xor.js +++ b/xor.js @@ -12,7 +12,7 @@ import isArrayLikeObject from './isArrayLikeObject.js'; * @category Array * @param {...Array} [arrays] The arrays to inspect. * @returns {Array} Returns the new array of filtered values. - * @see difference, without, xorBy, xorWith, union, unionBy, unionWith + * @see difference, union, unionBy, unionWith, without, xorBy, xorWith * @example * * xor([2, 1], [2, 3]); diff --git a/xorBy.js b/xorBy.js index c4e1b9603..e0ccc2958 100644 --- a/xorBy.js +++ b/xorBy.js @@ -15,7 +15,7 @@ import last from './last.js'; * @param {...Array} [arrays] The arrays to inspect. * @param {Function} iteratee The iteratee invoked per element. * @returns {Array} Returns the new array of filtered values. - * @see difference, without, xor, xorWith, union, unionBy, unionWith + * @see difference, union, unionBy, unionWith, without, xor, xorWith * @example * * xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); diff --git a/xorWith.js b/xorWith.js index 01bec47f6..6f985b29e 100644 --- a/xorWith.js +++ b/xorWith.js @@ -14,7 +14,7 @@ import last from './last.js'; * @param {...Array} [arrays] The arrays to inspect. * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns the new array of filtered values. - * @see difference, without, xor, xorBy, union, unionBy, unionWith + * @see difference, union, unionBy, unionWith, without, xor, xorBy * @example * * const objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; diff --git a/zip.js b/zip.js index b805b5c69..f8fe2e6e0 100644 --- a/zip.js +++ b/zip.js @@ -9,7 +9,7 @@ import unzip from './unzip.js'; * @category Array * @param {...Array} [arrays] The arrays to process. * @returns {Array} Returns the new array of grouped elements. - * @see zipObject, zipObjectDeep, zipWith, unzip, unzipWith + * @see unzip, unzipWith, zipObject, zipObjectDeep, zipWith * @example * * zip(['a', 'b'], [1, 2], [true, false]); diff --git a/zipObject.js b/zipObject.js index c3b52faee..a64f97605 100644 --- a/zipObject.js +++ b/zipObject.js @@ -10,7 +10,7 @@ import baseZipObject from './.internal/baseZipObject.js'; * @param {Array} [props=[]] The property identifiers. * @param {Array} [values=[]] The property values. * @returns {Object} Returns the new object. - * @see zip, zipObjectDeep, zipWith, unzip, unzipWith + * @see unzip, unzipWith, zip, zipObjectDeep, zipWith * @example * * zipObject(['a', 'b'], [1, 2]); diff --git a/zipObjectDeep.js b/zipObjectDeep.js index cb526d4a7..5e1c23172 100644 --- a/zipObjectDeep.js +++ b/zipObjectDeep.js @@ -9,7 +9,7 @@ import baseZipObject from './.internal/baseZipObject.js'; * @param {Array} [props=[]] The property identifiers. * @param {Array} [values=[]] The property values. * @returns {Object} Returns the new object. - * @see zip, zipObject, zipWith, unzip, unzipWith + * @see unzip, unzipWith, zip, zipObject, zipWith * @example * * zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); diff --git a/zipWith.js b/zipWith.js index 980c8145f..cb086455b 100644 --- a/zipWith.js +++ b/zipWith.js @@ -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);