From 73df84c0b482dd2337cbdda594625075dc55c219 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 17 Jan 2017 23:55:31 -0800 Subject: [PATCH] More tag cleanup. --- difference.js | 2 +- snakeCase.js | 2 +- startCase.js | 2 +- startsWith.js | 2 +- union.js | 2 +- unionBy.js | 2 +- unionWith.js | 2 +- unset.js | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/difference.js b/difference.js index 83d572d54..be4be904d 100644 --- a/difference.js +++ b/difference.js @@ -15,7 +15,7 @@ import isArrayLikeObject from './isArrayLikeObject.js'; * @param {Array} array The array to inspect. * @param {...Array} [values] The values to exclude. * @returns {Array} Returns the new array of filtered values. - * @see without, xor, xorBy, xorWith, union, unionBy, unionWith + * @see union, unionBy, unionWith, without, xor, xorBy, xorWith, * @example * * difference([2, 1], [2, 3]); diff --git a/snakeCase.js b/snakeCase.js index 4c3fbf493..f3127b55e 100644 --- a/snakeCase.js +++ b/snakeCase.js @@ -8,7 +8,7 @@ import createCompounder from './.internal/createCompounder.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the snake cased string. - * @see upperCase, lowerCase, upperFirst, camelCase, kebabCase, startCase + * @see camelCase, lowerCase, kebabCase, startCase, upperCase, upperFirst * @example * * snakeCase('Foo Bar'); diff --git a/startCase.js b/startCase.js index 45a3fa823..6ecfe263f 100644 --- a/startCase.js +++ b/startCase.js @@ -9,7 +9,7 @@ import upperFirst from './upperFirst.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the start cased string. - * @see upperCase, lowerCase, upperFirst, camelCase, kebabCase, snakeCase + * @see camelCase, lowerCase, kebabCase, snakeCase, upperCase, upperFirst * @example * * startCase('--foo-bar--'); diff --git a/startsWith.js b/startsWith.js index 524e815d0..9df13e1b0 100644 --- a/startsWith.js +++ b/startsWith.js @@ -13,7 +13,7 @@ import toString from './toString.js'; * @param {number} [position=0] The position to search from. * @returns {boolean} Returns `true` if `string` starts with `target`, * else `false`. - * @see includes, endsWith + * @see endsWith, includes * @example * * startsWith('abc', 'a'); diff --git a/union.js b/union.js index 62fb39c57..ef24a8cbf 100644 --- a/union.js +++ b/union.js @@ -11,7 +11,7 @@ import isArrayLikeObject from './isArrayLikeObject.js'; * @category Array * @param {...Array} [arrays] The arrays to inspect. * @returns {Array} Returns the new array of combined values. - * @see unionBy, unionWith, difference, without, xor, xorBy + * @see difference, unionBy, unionWith, without, xor, xorBy * @example * * union([2], [1, 2]); diff --git a/unionBy.js b/unionBy.js index 8544c29e7..bc9b8ff6c 100644 --- a/unionBy.js +++ b/unionBy.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 combined values. - * @see union, unionWith, difference, without, xor, xorBy + * @see difference, union, unionWith, without, xor, xorBy * @example * * unionBy([2.1], [1.2, 2.3], Math.floor); diff --git a/unionWith.js b/unionWith.js index f3552dc66..c7c23f632 100644 --- a/unionWith.js +++ b/unionWith.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 combined values. - * @see union, unionBy, difference, without, xor, xorBy + * @see difference, union, unionBy, without, xor, xorBy * @example * * const objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; diff --git a/unset.js b/unset.js index 3be16e33e..7e4c003d1 100644 --- a/unset.js +++ b/unset.js @@ -10,7 +10,7 @@ import baseUnset from './.internal/baseUnset.js'; * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to unset. * @returns {boolean} Returns `true` if the property is deleted, else `false`. - * @see has, set, get + * @see get, has, set * @example * * const object = { 'a': [{ 'b': { 'c': 7 } }] };