Skip to content

Commit 596a9d2

Browse files
author
Stanislav Idolov
authored
ENGCOM-2018: Removed double occurrence of keywords from sentences. #16182
2 parents dd6b2b3 + 0c522ba commit 596a9d2

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
@@ -3349,7 +3349,7 @@ Tests:
33493349
* [#686](https://github.com/magento/magento2/issues/686) -- Product save validation errors in the admin don't hide the overlay
33503350
* [#702](https://github.com/magento/magento2/issues/702) -- Base table or view not found
33513351
* [#652](https://github.com/magento/magento2/issues/652) -- Multishipping checkout not to change the Billing address js issue
3352-
* [#648](https://github.com/magento/magento2/issues/648) -- An equal (=) sign in the hash of the product page to to break the tabs functionality
3352+
* [#648](https://github.com/magento/magento2/issues/648) -- An equal (=) sign in the hash of the product page to break the tabs functionality
33533353
* Service Contracts:
33543354
* Refactored usage of new API of the Customer module
33553355
* 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

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
@@ -260,7 +260,7 @@ public function testGetCustomerAttributeMetadata()
260260
$this->assertEquals(
261261
$attributeMetadata,
262262
$attributeMetadata1,
263-
'Attribute metadata from the the same service became different after getAttributeCode was called'
263+
'Attribute metadata from the same service became different after getAttributeCode was called'
264264
);
265265
// Verify the consistency of attribute metadata from two services
266266
// 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;

lib/web/mage/requirejs/static.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ define('buildTools', [
1313
isEnabled: storage.getItem(storeName) === null,
1414

1515
/**
16-
* Removes base url from the the provided string
16+
* Removes base url from the provided string
1717
*
1818
* @param {String} url - Url to be processed.
1919
* @param {Object} config - RequiereJs config object.

lib/web/modernizr/modernizr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ window.Modernizr = (function( window, document, undefined ) {
10131013
/** Name of the expando, to work with multiple documents or to re-shiv one document */
10141014
var expando = '_html5shiv';
10151015

1016-
/** The id for the the documents expando */
1016+
/** The id for the documents expando */
10171017
var expanID = 0;
10181018

10191019
/** Cached data for each document */

0 commit comments

Comments
 (0)