Cleanup tag order.

This commit is contained in:
John-David Dalton
2017-01-16 23:55:06 -08:00
parent 401016d260
commit be6a50b0ed
13 changed files with 13 additions and 13 deletions

View File

@@ -8,7 +8,7 @@ import createCompounder from './.internal/createCompounder.js';
* @category String * @category String
* @param {string} [string=''] The string to convert. * @param {string} [string=''] The string to convert.
* @returns {string} Returns the camel cased string. * @returns {string} Returns the camel cased string.
* @see upperCase, lowerCase, upperFirst, kebabCase, snakeCase, startCase * @see lowerCase, kebabCase, snakeCase, startCase, upperCase, upperFirst
* @example * @example
* *
* camelCase('Foo Bar'); * camelCase('Foo Bar');

View File

@@ -15,7 +15,7 @@ const reHasRegExpChar = RegExp(reRegExpChar.source);
* @category String * @category String
* @param {string} [string=''] The string to escape. * @param {string} [string=''] The string to escape.
* @returns {string} Returns the escaped string. * @returns {string} Returns the escaped string.
* @see unescape, escape, escapeRegExp * @see escape, escapeRegExp, unescape
* @example * @example
* *
* escapeRegExp('[lodash](https://lodash.com/)'); * escapeRegExp('[lodash](https://lodash.com/)');

View File

@@ -11,7 +11,7 @@ import map from './map.js';
* @param {Array|Object} collection The collection to iterate over. * @param {Array|Object} collection The collection to iterate over.
* @param {Function} iteratee The function invoked per iteration. * @param {Function} iteratee The function invoked per iteration.
* @returns {Array} Returns the new flattened array. * @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 * @example
* *
* function duplicate(n) { * function duplicate(n) {

View File

@@ -13,7 +13,7 @@ const INFINITY = 1 / 0;
* @param {Array|Object} collection The collection to iterate over. * @param {Array|Object} collection The collection to iterate over.
* @param {Function} iteratee The function invoked per iteration. * @param {Function} iteratee The function invoked per iteration.
* @returns {Array} Returns the new flattened array. * @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 * @example
* *
* function duplicate(n) { * function duplicate(n) {

View File

@@ -12,7 +12,7 @@ import toInteger from './toInteger.js';
* @param {Function} iteratee The function invoked per iteration. * @param {Function} iteratee The function invoked per iteration.
* @param {number} [depth=1] The maximum recursion depth. * @param {number} [depth=1] The maximum recursion depth.
* @returns {Array} Returns the new flattened array. * @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 * @example
* *
* function duplicate(n) { * function duplicate(n) {

2
gt.js
View File

@@ -9,7 +9,7 @@ import toNumber from './toNumber.js';
* @param {*} other The other value to compare. * @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is greater than `other`, * @returns {boolean} Returns `true` if `value` is greater than `other`,
* else `false`. * else `false`.
* @see lt, gte, lte * @see gte, lt, lte
* @example * @example
* *
* gt(3, 1); * gt(3, 1);

View File

@@ -9,7 +9,7 @@ import hasPath from './.internal/hasPath.js';
* @param {Object} object The object to query. * @param {Object} object The object to query.
* @param {Array|string} path The path to check. * @param {Array|string} path The path to check.
* @returns {boolean} Returns `true` if `path` exists, else `false`. * @returns {boolean} Returns `true` if `path` exists, else `false`.
* @see has, set, get, unset * @see has, get, set, unset
* @example * @example
* *
* const object = create({ 'a': create({ 'b': 2 }) }); * const object = create({ 'a': create({ 'b': 2 }) });

View File

@@ -21,7 +21,7 @@ const nativeMax = Math.max;
* @param {number} [fromIndex=0] The index to search from. * @param {number} [fromIndex=0] The index to search from.
* @param- {Object} [guard] Enables use as an iteratee for methods like `reduce`. * @param- {Object} [guard] Enables use as an iteratee for methods like `reduce`.
* @returns {boolean} Returns `true` if `value` is found, else `false`. * @returns {boolean} Returns `true` if `value` is found, else `false`.
* @see startsWith, endsWith * @see endsWith, startsWith
* @example * @example
* *
* includes([1, 2, 3], 1); * includes([1, 2, 3], 1);

View File

@@ -10,7 +10,7 @@ import toInteger from './toInteger.js';
* @category Lang * @category Lang
* @param {*} value The value to check. * @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is an integer, else `false`. * @returns {boolean} Returns `true` if `value` is an integer, else `false`.
* @see toInteger, isNumber, toNumber * @see isNumber, toInteger, toNumber
* @example * @example
* *
* isInteger(3); * isInteger(3);

View File

@@ -8,7 +8,7 @@ import createCompounder from './.internal/createCompounder.js';
* @category String * @category String
* @param {string} [string=''] The string to convert. * @param {string} [string=''] The string to convert.
* @returns {string} Returns the kebab cased string. * @returns {string} Returns the kebab cased string.
* @see upperCase, lowerCase, upperFirst, camelCase, snakeCase, startCase * @see camelCase, lowerCase, snakeCase, startCase, upperCase, upperFirst
* @example * @example
* *
* kebabCase('Foo Bar'); * kebabCase('Foo Bar');

View File

@@ -7,7 +7,7 @@ import createCompounder from './.internal/createCompounder.js';
* @category String * @category String
* @param {string} [string=''] The string to convert. * @param {string} [string=''] The string to convert.
* @returns {string} Returns the lower cased string. * @returns {string} Returns the lower cased string.
* @see upperCase, upperFirst, camelCase, kebabCase, snakeCase, startCase * @see camelCase, kebabCase, snakeCase, startCase, upperCase, upperFirst
* @example * @example
* *
* lowerCase('--Foo-Bar--'); * lowerCase('--Foo-Bar--');

2
lt.js
View File

@@ -9,7 +9,7 @@ import toNumber from './toNumber.js';
* @param {*} other The other value to compare. * @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is less than `other`, * @returns {boolean} Returns `true` if `value` is less than `other`,
* else `false`. * else `false`.
* @see gt, lte, gte * @see gt, gte, lte
* @example * @example
* *
* lt(1, 3); * lt(1, 3);

2
lte.js
View File

@@ -9,7 +9,7 @@ import toNumber from './toNumber.js';
* @param {*} other The other value to compare. * @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is less than or equal to * @returns {boolean} Returns `true` if `value` is less than or equal to
* `other`, else `false`. * `other`, else `false`.
* @see gt, lt, gte * @see gt, gte, lt
* @example * @example
* *
* lte(1, 3); * lte(1, 3);