Skip to content

Commit a1b137f

Browse files
sanganinamratagelanivishal
authored andcommitted
Removed double occurrence of keywords in sentences.
1 parent ce5eacd commit a1b137f

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

CHANGELOG.md

+1-1
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

+1-1
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

+1-1
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

+2-2
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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 */

setup/pub/angular/angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7770,7 +7770,7 @@
77707770
* caching.
77717771
* - **timeout** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise}
77727772
* that should abort the request when resolved.
7773-
* - **withCredentials** - `{boolean}` - whether to to set the `withCredentials` flag on the
7773+
* - **withCredentials** - `{boolean}` - whether to set the `withCredentials` flag on the
77747774
* XHR object. See [requests with credentials]https://developer.mozilla.org/en/http_access_control#section_5
77757775
* for more information.
77767776
* - **responseType** - `{string}` - see

0 commit comments

Comments
 (0)