Consistent use of of instead of on in path related docs. [ci skip]

This commit is contained in:
John-David Dalton
2015-08-19 16:42:14 -07:00
parent 9859b1555f
commit a049c1189e

View File

@@ -3894,7 +3894,7 @@
} }
/** /**
* Invokes the method at `path` on `object`. * Invokes the method at `path` of `object`.
* *
* @private * @private
* @param {Object} object The object to query. * @param {Object} object The object to query.
@@ -8947,7 +8947,7 @@
} }
/** /**
* Gets the property value at `path` of `object`. If the resolved value is * Gets the value at `path` of `object`. If the resolved value is
* `undefined` the `defaultValue` is used in its place. * `undefined` the `defaultValue` is used in its place.
* *
* @static * @static
@@ -10727,7 +10727,7 @@
} }
/** /**
* Creates a function that compares the value at `path` on a given object * Creates a function that compares the value at `path` of a given object
* to `srcValue`. * to `srcValue`.
* *
* **Note:** This method supports comparing arrays, booleans, `Date` objects, * **Note:** This method supports comparing arrays, booleans, `Date` objects,
@@ -10754,7 +10754,7 @@
} }
/** /**
* Creates a function that invokes the method at `path` on a given object. * Creates a function that invokes the method at `path` of a given object.
* Any additional arguments are provided to the invoked method. * Any additional arguments are provided to the invoked method.
* *
* @static * @static
@@ -10784,7 +10784,7 @@
/** /**
* The opposite of `_.method`; this method creates a function that invokes * The opposite of `_.method`; this method creates a function that invokes
* the method at a given path on `object`. Any additional arguments are * the method at a given path of `object`. Any additional arguments are
* provided to the invoked method. * provided to the invoked method.
* *
* @static * @static
@@ -10918,7 +10918,7 @@
} }
/** /**
* Creates a function that returns the value at `path` on a given object. * Creates a function that returns the value at `path` of a given object.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -10944,7 +10944,7 @@
/** /**
* The opposite of `_.property`; this method creates a function that returns * The opposite of `_.property`; this method creates a function that returns
* the property value at a given path on `object`. * the value at a given path of `object`.
* *
* @static * @static
* @memberOf _ * @memberOf _