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