Fix another batch of spelling typos (#13915)

* Fix typos

* Remove repeated words

* Minor grammar fixes
This commit is contained in:
Nathan Baulch
2022-11-08 00:30:24 +11:00
committed by GitHub
parent 3dc8403e10
commit 9f1fa0e440
1449 changed files with 2576 additions and 2581 deletions

View File

@@ -113,7 +113,7 @@ API.Client.StoreApi.prototype.getInventory = function(opt_extraHttpRequestParams
/**
* Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
* @param {!number} orderId ID of pet that needs to be fetched
* @param {!angular.$http.Config=} opt_extraHttpRequestParams Extra HTTP parameters to send.
* @return {!angular.$q.Promise<!API.Client.Order>}

View File

@@ -282,7 +282,7 @@ goog.addDependency = function(relPath, provides, requires) {
// NOTE(nnaze): The debug DOM loader was included in base.js as an orignal
// NOTE(nnaze): The debug DOM loader was included in base.js as an original
// way to do "debug-mode" development. The dependency system can sometimes
// be confusing, as can the debug DOM loader's asynchronous nature.
//
@@ -324,7 +324,7 @@ goog.ENABLE_DEBUG_LOADER = true;
*/
goog.require = function(name) {
// if the object already exists we do not need do do anything
// if the object already exists we do not need do anything
// TODO(arv): If we start to support require based on file name this has
// to change
// TODO(arv): If we allow goog.foo.* this has to change
@@ -687,7 +687,7 @@ goog.typeOf = function(value) {
// Check these first, so we can avoid calling Object.prototype.toString if
// possible.
//
// IE improperly marshals tyepof across execution contexts, but a
// IE improperly marshals typeof across execution contexts, but a
// cross-context object will still return false for "instanceof Object".
if (value instanceof Array) {
return 'array';
@@ -1378,7 +1378,7 @@ goog.getMsg = function(str, opt_values) {
* This is useful when introducing a new message that has not yet been
* translated into all languages.
*
* This function is a compiler primtive. Must be used in the form:
* This function is a compiler primitive. Must be used in the form:
* <code>var x = goog.getMsgWithFallback(MSG_A, MSG_B);</code>
* where MSG_A and MSG_B were initialized with goog.getMsg.
*
@@ -1478,7 +1478,7 @@ goog.inherits = function(childCtor, parentCtor) {
* Call up to the superclass.
*
* If this is called from a constructor, then this calls the superclass
* contructor with arguments 1-N.
* constructor with arguments 1-N.
*
* If this is called from a prototype method, then you must pass
* the name of the method as the second argument to this function. If