Skip to content

Commit a0f04c7

Browse files
author
Stanislav Idolov
authored
ENGCOM-2103: [Forwardport] Fixed typo error #16326
2 parents 235e08a + c9c9472 commit a0f04c7

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

app/code/Magento/Paypal/view/frontend/web/order-review.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ define([
108108
},
109109

110110
/**
111-
* trigger change for the update of shippping methods from server
111+
* trigger change for the update of shipping methods from server
112112
*/
113113
_updateOrderHandler: function () {
114114
$(this.options.shippingSelector).trigger('change');
@@ -297,7 +297,7 @@ define([
297297
this._updateOrderSubmit(true);
298298
this._toggleButton(this.options.updateOrderSelector, true);
299299

300-
// form data and callBack updated based on the shippping Form element
300+
// form data and callBack updated based on the shipping Form element
301301
if (this.isShippingSubmitForm) {
302302
formData = $(this.options.shippingSubmitFormSelector).serialize() + '&isAjax=true';
303303

app/code/Magento/Tinymce3/view/base/web/tiny_mce/classes/Formatter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@
445445
childCount = getChildCount(node);
446446

447447
// Remove empty nodes but only if there is multiple wrappers and they are not block
448-
// elements so never remove single <h1></h1> since that would remove the currrent empty block element where the caret is at
448+
// elements so never remove single <h1></h1> since that would remove the current empty block element where the caret is at
449449
if ((newWrappers.length > 1 || !isBlock(node)) && childCount === 0) {
450450
dom.remove(node, 1);
451451
return;

app/code/Magento/Tinymce3/view/base/web/tiny_mce/classes/dom/DOMUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@
11061106

11071107
/**
11081108
* Returns a unique id. This can be useful when generating elements on the fly.
1109-
* This method will not check if the element allready exists.
1109+
* This method will not check if the element already exists.
11101110
*
11111111
* @method uniqueId
11121112
* @param {String} p Optional prefix to add infront of all ids defaults to "mce_".

app/code/Magento/Tinymce3/view/base/web/tiny_mce/tiny_mce_jquery_src.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14451,7 +14451,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', {
1445114451
childCount = getChildCount(node);
1445214452

1445314453
// Remove empty nodes but only if there is multiple wrappers and they are not block
14454-
// elements so never remove single <h1></h1> since that would remove the currrent empty block element where the caret is at
14454+
// elements so never remove single <h1></h1> since that would remove the current empty block element where the caret is at
1445514455
if ((newWrappers.length > 1 || !isBlock(node)) && childCount === 0) {
1445614456
dom.remove(node, 1);
1445714457
return;

app/code/Magento/Tinymce3/view/base/web/tiny_mce/tiny_mce_prototype_src.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15301,7 +15301,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', {
1530115301
childCount = getChildCount(node);
1530215302

1530315303
// Remove empty nodes but only if there is multiple wrappers and they are not block
15304-
// elements so never remove single <h1></h1> since that would remove the currrent empty block element where the caret is at
15304+
// elements so never remove single <h1></h1> since that would remove the current empty block element where the caret is at
1530515305
if ((newWrappers.length > 1 || !isBlock(node)) && childCount === 0) {
1530615306
dom.remove(node, 1);
1530715307
return;

app/code/Magento/Tinymce3/view/base/web/tiny_mce/tiny_mce_src.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15275,7 +15275,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', {
1527515275
childCount = getChildCount(node);
1527615276

1527715277
// Remove empty nodes but only if there is multiple wrappers and they are not block
15278-
// elements so never remove single <h1></h1> since that would remove the currrent empty block element where the caret is at
15278+
// elements so never remove single <h1></h1> since that would remove the current empty block element where the caret is at
1527915279
if ((newWrappers.length > 1 || !isBlock(node)) && childCount === 0) {
1528015280
dom.remove(node, 1);
1528115281
return;

lib/web/modernizr/modernizr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ window.Modernizr = (function( window, document, undefined ) {
910910
bool = inputElem.checkValidity && inputElem.checkValidity() === false;
911911

912912
} else {
913-
// If the upgraded input compontent rejects the :) text, we got a winner
913+
// If the upgraded input component rejects the :) text, we got a winner
914914
bool = inputElem.value != smile;
915915
}
916916
}

0 commit comments

Comments
 (0)