From be6a50b0ed2874db91be38890c3a7b791c49e61f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 16 Jan 2017 23:55:06 -0800 Subject: [PATCH] Cleanup tag order. --- camelCase.js | 2 +- escapeRegExp.js | 2 +- flatMap.js | 2 +- flatMapDeep.js | 2 +- flatMapDepth.js | 2 +- gt.js | 2 +- hasIn.js | 2 +- includes.js | 2 +- isInteger.js | 2 +- kebabCase.js | 2 +- lowerCase.js | 2 +- lt.js | 2 +- lte.js | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/camelCase.js b/camelCase.js index 2388fa6f1..160ff60bc 100644 --- a/camelCase.js +++ b/camelCase.js @@ -8,7 +8,7 @@ import createCompounder from './.internal/createCompounder.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the camel cased string. - * @see upperCase, lowerCase, upperFirst, kebabCase, snakeCase, startCase + * @see lowerCase, kebabCase, snakeCase, startCase, upperCase, upperFirst * @example * * camelCase('Foo Bar'); diff --git a/escapeRegExp.js b/escapeRegExp.js index 29e1491c0..3bfd3f170 100644 --- a/escapeRegExp.js +++ b/escapeRegExp.js @@ -15,7 +15,7 @@ const reHasRegExpChar = RegExp(reRegExpChar.source); * @category String * @param {string} [string=''] The string to escape. * @returns {string} Returns the escaped string. - * @see unescape, escape, escapeRegExp + * @see escape, escapeRegExp, unescape * @example * * escapeRegExp('[lodash](https://lodash.com/)'); diff --git a/flatMap.js b/flatMap.js index 46c5e6c0a..2f4e99d22 100644 --- a/flatMap.js +++ b/flatMap.js @@ -11,7 +11,7 @@ import map from './map.js'; * @param {Array|Object} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new flattened array. - * @see map, mapKeys, mapValues, flatMapDeep, flatMapDepth, flatten, flattenDeep, flattenDepth + * @see flatMapDeep, flatMapDepth, flatten, flattenDeep, flattenDepth, map, mapKeys, mapValues * @example * * function duplicate(n) { diff --git a/flatMapDeep.js b/flatMapDeep.js index ce9e0bbf9..da7276279 100644 --- a/flatMapDeep.js +++ b/flatMapDeep.js @@ -13,7 +13,7 @@ const INFINITY = 1 / 0; * @param {Array|Object} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new flattened array. - * @see map, mapKeys, mapValues, flatMap, flatMapDepth, flatten, flattenDeep, flattenDepth + * @see flatMap, flatMapDepth, flatten, flattenDeep, flattenDepth, map, mapKeys, mapValues * @example * * function duplicate(n) { diff --git a/flatMapDepth.js b/flatMapDepth.js index ba7961dc6..10df40585 100644 --- a/flatMapDepth.js +++ b/flatMapDepth.js @@ -12,7 +12,7 @@ import toInteger from './toInteger.js'; * @param {Function} iteratee The function invoked per iteration. * @param {number} [depth=1] The maximum recursion depth. * @returns {Array} Returns the new flattened array. - * @see map, mapKeys, mapValues, flatMap, flatMapDeep, flatten, flattenDeep, flattenDepth + * @see flatMap, flatMapDeep, flatten, flattenDeep, flattenDepth, map, mapKeys, mapValues * @example * * function duplicate(n) { diff --git a/gt.js b/gt.js index f4916aef9..3d57f624a 100644 --- a/gt.js +++ b/gt.js @@ -9,7 +9,7 @@ import toNumber from './toNumber.js'; * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if `value` is greater than `other`, * else `false`. - * @see lt, gte, lte + * @see gte, lt, lte * @example * * gt(3, 1); diff --git a/hasIn.js b/hasIn.js index f9a2ff1e6..ee22558a3 100644 --- a/hasIn.js +++ b/hasIn.js @@ -9,7 +9,7 @@ import hasPath from './.internal/hasPath.js'; * @param {Object} object The object to query. * @param {Array|string} path The path to check. * @returns {boolean} Returns `true` if `path` exists, else `false`. - * @see has, set, get, unset + * @see has, get, set, unset * @example * * const object = create({ 'a': create({ 'b': 2 }) }); diff --git a/includes.js b/includes.js index a7384774d..6e7f57781 100644 --- a/includes.js +++ b/includes.js @@ -21,7 +21,7 @@ const nativeMax = Math.max; * @param {number} [fromIndex=0] The index to search from. * @param- {Object} [guard] Enables use as an iteratee for methods like `reduce`. * @returns {boolean} Returns `true` if `value` is found, else `false`. - * @see startsWith, endsWith + * @see endsWith, startsWith * @example * * includes([1, 2, 3], 1); diff --git a/isInteger.js b/isInteger.js index 51b7672de..c37487e69 100644 --- a/isInteger.js +++ b/isInteger.js @@ -10,7 +10,7 @@ import toInteger from './toInteger.js'; * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an integer, else `false`. - * @see toInteger, isNumber, toNumber + * @see isNumber, toInteger, toNumber * @example * * isInteger(3); diff --git a/kebabCase.js b/kebabCase.js index 4a884d2f6..5e170c900 100644 --- a/kebabCase.js +++ b/kebabCase.js @@ -8,7 +8,7 @@ import createCompounder from './.internal/createCompounder.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the kebab cased string. - * @see upperCase, lowerCase, upperFirst, camelCase, snakeCase, startCase + * @see camelCase, lowerCase, snakeCase, startCase, upperCase, upperFirst * @example * * kebabCase('Foo Bar'); diff --git a/lowerCase.js b/lowerCase.js index 74435e445..cb9a70d50 100644 --- a/lowerCase.js +++ b/lowerCase.js @@ -7,7 +7,7 @@ import createCompounder from './.internal/createCompounder.js'; * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the lower cased string. - * @see upperCase, upperFirst, camelCase, kebabCase, snakeCase, startCase + * @see camelCase, kebabCase, snakeCase, startCase, upperCase, upperFirst * @example * * lowerCase('--Foo-Bar--'); diff --git a/lt.js b/lt.js index 194498206..9606d183a 100644 --- a/lt.js +++ b/lt.js @@ -9,7 +9,7 @@ import toNumber from './toNumber.js'; * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if `value` is less than `other`, * else `false`. - * @see gt, lte, gte + * @see gt, gte, lte * @example * * lt(1, 3); diff --git a/lte.js b/lte.js index c3d41a849..924cc26d2 100644 --- a/lte.js +++ b/lte.js @@ -9,7 +9,7 @@ import toNumber from './toNumber.js'; * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if `value` is less than or equal to * `other`, else `false`. - * @see gt, lt, gte + * @see gt, gte, lt * @example * * lte(1, 3);