Skip to content

Commit 0b2e090

Browse files
ENGCOM-2448: [Forwardport] Removed double occurrence of keywords in sentences. #16973
- Merge Pull Request #16973 from gelanivishal/magento2:2.3-develop-PR-port-16182 - Merged commits: 1. a1b137f
2 parents f01227c + a1b137f commit 0b2e090

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1977,7 +1977,7 @@ Tests:
19771977
* [#686](https://github.com/magento/magento2/issues/686) -- Product save validation errors in the admin don't hide the overlay
19781978
* [#702](https://github.com/magento/magento2/issues/702) -- Base table or view not found
19791979
* [#652](https://github.com/magento/magento2/issues/652) -- Multishipping checkout not to change the Billing address js issue
1980-
* [#648](https://github.com/magento/magento2/issues/648) -- An equal (=) sign in the hash of the product page to to break the tabs functionality
1980+
* [#648](https://github.com/magento/magento2/issues/648) -- An equal (=) sign in the hash of the product page to break the tabs functionality
19811981
* Service Contracts:
19821982
* Refactored usage of new API of the Customer module
19831983
* Implemented Service Contracts for the Sales module

app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ define([
3131
this.options.cache.label = $(this.options.passwordStrengthMeterLabelSelector, this.element);
3232

3333
// We need to look outside the module for backward compatibility, since someone can already use the module.
34-
// @todo Narrow this selector in 2.3 so it doesn't accidentally finds the the email field from the
34+
// @todo Narrow this selector in 2.3 so it doesn't accidentally finds the email field from the
3535
// newsletter email field or any other "email" field.
3636
this.options.cache.email = $(this.options.formSelector).find(this.options.emailSelector);
3737
this._bind();

app/code/Magento/Integration/view/adminhtml/web/js/integration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ define([
200200
if (IdentityLogin.win.closed ||
201201
IdentityLogin.win.location.href == IdentityLogin.successCallbackUrl //eslint-disable-line eqeqeq
202202
) {
203-
//Stop the the polling
203+
//Stop the polling
204204
clearInterval(IdentityLogin.checker);
205205
$('body').trigger('processStart');
206206
//Check for window closed

app/code/Magento/Tinymce3/view/base/web/tiny_mce/plugins/autosave/editor_plugin_src.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* 1. localStorage - A new feature of HTML 5, localStorage can store megabytes of data per domain
2121
* on the client computer. Data stored in the localStorage area has no expiration date, so we must
2222
* manage expiring the data ourselves. localStorage is fully supported by IE8, and it is supposed
23-
* to be working in Firefox 3 and Safari 3.2, but in reality is is flaky in those browsers. As
23+
* to be working in Firefox 3 and Safari 3.2, but in reality is flaky in those browsers. As
2424
* HTML 5 gets wider support, the AutoSave plugin will use it automatically. In Windows Vista/7,
2525
* localStorage is stored in the following folder:
2626
* C:\Users\[username]\AppData\Local\Microsoft\Internet Explorer\DOMStore\[tempFolder]
@@ -297,7 +297,7 @@
297297
},
298298

299299
/**
300-
* This method will store the current contents in the the storage engine.
300+
* This method will store the current contents in the storage engine.
301301
*
302302
* @method storeDraft
303303
*/

app/code/Magento/Tinymce3/view/base/web/tiny_mce/plugins/paste/editor_plugin_src.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
sel.setRng(oldRng);
208208
sel.setContent('');
209209

210-
// For some odd reason we need to detach the the mceInsertContent call from the paste event
210+
// For some odd reason we need to detach the mceInsertContent call from the paste event
211211
// It's like IE has a reference to the parent element that you paste in and the selection gets messed up
212212
// when it tries to restore the selection
213213
setTimeout(function() {

dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/ProductRuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function testReindexWithProductNotVisibleIndividually()
6767
$this->assertEquals(
6868
7.5,
6969
$this->resourceRule->getRulePrice(new \DateTime(), 1, 1, $product->getId()),
70-
"Catalog price rule doesn't apply to to product with visibility value \"Not Visibility Individually\""
70+
"Catalog price rule doesn't apply to product with visibility value \"Not Visibility Individually\""
7171
);
7272
}
7373
}

dev/tests/integration/testsuite/Magento/Customer/Model/CustomerMetadataTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public function testGetCustomerAttributeMetadata()
262262
$this->assertEquals(
263263
$attributeMetadata,
264264
$attributeMetadata1,
265-
'Attribute metadata from the the same service became different after getAttributeCode was called'
265+
'Attribute metadata from the same service became different after getAttributeCode was called'
266266
);
267267
// Verify the consistency of attribute metadata from two services
268268
// after getAttributeCode was called

dev/tests/integration/testsuite/Magento/Tax/Model/TaxCalculationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2192,7 +2192,7 @@ protected function setupMultiRuleQuote()
21922192
}
21932193

21942194
/**
2195-
* Create the base results for the the multi rules test
2195+
* Create the base results for the multi rules test
21962196
*
21972197
* @return array
21982198
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)

lib/internal/Magento/Framework/Api/Uploader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function __construct()
1919
}
2020

2121
/**
22-
* Explicitly set the the file attributes instead of setting it via constructor
22+
* Explicitly set the file attributes instead of setting it via constructor
2323
*
2424
* @param array $fileAttributes
2525
* @return void

lib/web/MutationObserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
if (lastRecord === newRecord)
325325
return lastRecord;
326326

327-
// Check if the the record we are adding represents the same record. If
327+
// Check if the record we are adding represents the same record. If
328328
// so, we keep the one with the oldValue in it.
329329
if (recordWithOldValue && recordRepresentsCurrentMutation(lastRecord))
330330
return recordWithOldValue;

0 commit comments

Comments
 (0)