Change "it is" to "it's". [ci skip]

This commit is contained in:
jdalton
2015-05-15 00:22:01 -07:00
parent 6af7fac344
commit b899a19184

View File

@@ -280,7 +280,7 @@
/** /**
* Used as a reference to the global object. * Used as a reference to the global object.
* *
* The `this` value is used if it is the global object to avoid Greasemonkey's * The `this` value is used if it's the global object to avoid Greasemonkey's
* restricted `window` object, otherwise the `window` object is used. * restricted `window` object, otherwise the `window` object is used.
*/ */
var root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this; var root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this;
@@ -381,7 +381,7 @@
} }
/** /**
* Converts `value` to a string if it is not one. An empty string is returned * Converts `value` to a string if it's not one. An empty string is returned
* for `null` or `undefined` values. * for `null` or `undefined` values.
* *
* @private * @private
@@ -4562,7 +4562,7 @@
} }
/** /**
* Converts `value` to an array-like object if it is not one. * Converts `value` to an array-like object if it's not one.
* *
* @private * @private
* @param {*} value The value to process. * @param {*} value The value to process.
@@ -4582,7 +4582,7 @@
} }
/** /**
* Converts `value` to an object if it is not one. * Converts `value` to an object if it's not one.
* *
* @private * @private
* @param {*} value The value to process. * @param {*} value The value to process.
@@ -4603,7 +4603,7 @@
} }
/** /**
* Converts `value` to property path array if it is not one. * Converts `value` to property path array if it's not one.
* *
* @private * @private
* @param {*} value The value to process. * @param {*} value The value to process.
@@ -6777,7 +6777,7 @@
}); });
/** /**
* Invokes the method at `path` on each element in `collection`, returning * Invokes the method at `path` of each element in `collection`, returning
* an array of the results of each invoked method. Any additional arguments * an array of the results of each invoked method. Any additional arguments
* are provided to each invoked method. If `methodName` is a function it is * are provided to each invoked method. If `methodName` is a function it is
* invoked for, and `this` bound to, each element in `collection`. * invoked for, and `this` bound to, each element in `collection`.
@@ -9612,7 +9612,7 @@
} }
/** /**
* Gets the property value of `path` on `object`. If the resolved value is * Gets the property 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
@@ -10544,7 +10544,7 @@
}); });
/** /**
* Pads `string` on the left and right sides if it is shorter than `length`. * Pads `string` on the left and right sides if it's shorter than `length`.
* Padding characters are truncated if they can't be evenly divided by `length`. * Padding characters are truncated if they can't be evenly divided by `length`.
* *
* @static * @static
@@ -10582,7 +10582,7 @@
} }
/** /**
* Pads `string` on the left side if it is shorter than `length`. Padding * Pads `string` on the left side if it's shorter than `length`. Padding
* characters are truncated if they exceed `length`. * characters are truncated if they exceed `length`.
* *
* @static * @static
@@ -10606,7 +10606,7 @@
var padLeft = createPadDir(); var padLeft = createPadDir();
/** /**
* Pads `string` on the right side if it is shorter than `length`. Padding * Pads `string` on the right side if it's shorter than `length`. Padding
* characters are truncated if they exceed `length`. * characters are truncated if they exceed `length`.
* *
* @static * @static
@@ -11087,7 +11087,7 @@
} }
/** /**
* Truncates `string` if it is longer than the given maximum string length. * Truncates `string` if it's longer than the given maximum string length.
* The last characters of the truncated string are replaced with the omission * The last characters of the truncated string are replaced with the omission
* string which defaults to "...". * string which defaults to "...".
* *