Use query instead of inspect in various docs. [ci skip]

This commit is contained in:
jdalton
2015-04-11 16:33:24 -07:00
parent 0aef515522
commit 1ef92c87fb

View File

@@ -4150,7 +4150,7 @@
* Creates an array of the own symbols of `object`.
*
* @private
* @param {Object} object The object to inspect.
* @param {Object} object The object to query.
* @returns {Array} Returns the array of symbols.
*/
var getSymbols = !getOwnPropertySymbols ? constant([]) : function(object) {
@@ -4589,7 +4589,7 @@
* own enumerable property names of `object`.
*
* @private
* @param {Object} object The object to inspect.
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property names.
*/
function shimKeys(object) {
@@ -9572,7 +9572,7 @@
* @static
* @memberOf _
* @category Object
* @param {Object} object The object to inspect.
* @param {Object} object The object to query.
* @param {Array|string} path The path to check.
* @returns {boolean} Returns `true` if `path` is a direct property, else `false`.
* @example
@@ -9664,7 +9664,7 @@
* @static
* @memberOf _
* @category Object
* @param {Object} object The object to inspect.
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property names.
* @example
*
@@ -9701,7 +9701,7 @@
* @static
* @memberOf _
* @category Object
* @param {Object} object The object to inspect.
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property names.
* @example
*
@@ -9923,7 +9923,7 @@
* @static
* @memberOf _
* @category Object
* @param {Object} object The object to inspect.
* @param {Object} object The object to query.
* @returns {Array} Returns the new array of key-value pairs.
* @example
*