Skip to content

Commit 6b705e4

Browse files
author
Tino Mewes
authored
Fix typo: Replace 'Retrive' with 'Retrieve' globally (#1995)
* fix(typo): Replace 'Retrive' with 'Retrieve' globally * Add @tmewes as a contributor * fix(readme): Add working 'All Contributors' link
1 parent f09b664 commit 6b705e4

File tree

95 files changed

+177
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+177
-167
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1317,6 +1317,15 @@
13171317
"contributions": [
13181318
"doc"
13191319
]
1320+
},
1321+
{
1322+
"login": "tmewes",
1323+
"name": "Tino Mewes",
1324+
"avatar_url": "https://avatars.githubusercontent.com/u/12640514?v=4",
1325+
"profile": "https://github.com/tmewes",
1326+
"contributions": [
1327+
"code"
1328+
]
13201329
}
13211330
],
13221331
"contributorsPerLine": 7

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
3-
[![All Contributors](https://img.shields.io/badge/all_contributors-145-orange.svg?style=flat-square)](#contributors-)
3+
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-146-orange.svg?style=flat-square" alt="All Contributors"></a>
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->
55
<a href="https://travis-ci.org/openmage/magento-lts"><img src="https://travis-ci.org/openmage/magento-lts.svg" alt="Build Status"></a>
66
<a href="https://packagist.org/packages/openmage/magento-lts"><img src="https://poser.pugx.org/openmage/magento-lts/d/total.svg" alt="Total Downloads"></a>
@@ -341,6 +341,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
341341
<td align="center"><a href="https://github.com/lemundo-team"><img src="https://avatars.githubusercontent.com/u/61752623?v=4?s=100" width="100px;" alt=""/><br /><sub><b>lemundo-team</b></sub></a><br /><a href="https://github.com/OpenMage/magento-lts/commits?author=lemundo-team" title="Code">💻</a></td>
342342
<td align="center"><a href="https://github.com/mdlonline"><img src="https://avatars.githubusercontent.com/u/5389528?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mdlonline</b></sub></a><br /><a href="https://github.com/OpenMage/magento-lts/commits?author=mdlonline" title="Code">💻</a></td>
343343
<td align="center"><a href="https://www.developpeur-web-tlse.fr/"><img src="https://avatars.githubusercontent.com/u/5030086?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin MARROT</b></sub></a><br /><a href="https://github.com/OpenMage/magento-lts/commits?author=nimasan" title="Documentation">📖</a></td>
344+
<td align="center"><a href="https://github.com/tmewes"><img src="https://avatars.githubusercontent.com/u/12640514?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tino Mewes</b></sub></a><br /><a href="https://github.com/OpenMage/magento-lts/commits?author=tmewes" title="Code">💻</a></td>
344345
</tr>
345346
</table>
346347

app/code/core/Mage/Adminhtml/Block/Catalog/Product/Created.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function isEdit()
7777
}
7878

7979
/**
80-
* Retrive serialized json with configurable attributes values of simple
80+
* Retrieve serialized json with configurable attributes values of simple
8181
*
8282
* @return string
8383
*/
@@ -121,7 +121,7 @@ public function getAttributes()
121121
}
122122

123123
/**
124-
* Retrive configurable product for created/edited simple
124+
* Retrieve configurable product for created/edited simple
125125
*
126126
* @return Mage_Catalog_Model_Product
127127
*/
@@ -136,7 +136,7 @@ public function getConfigurableProduct()
136136
}
137137

138138
/**
139-
* Retrive product
139+
* Retrieve product
140140
*
141141
* @return Mage_Catalog_Model_Product
142142
*/

app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Attributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected function _prepareForm()
6363
}
6464

6565
/**
66-
* Retrive attributes for product massupdate
66+
* Retrieve attributes for product massupdate
6767
*
6868
* @return array
6969
*/

app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Attributes/Create.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Attributes_Create extends Ma
4141
protected $_config = null;
4242

4343
/**
44-
* Retrive config of new attribute creation
44+
* Retrieve config of new attribute creation
4545
*
4646
* @return Varien_Object
4747
*/

app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ protected function _prepareLayout()
193193
}
194194

195195
/**
196-
* Retrive product object from object if not from registry
196+
* Retrieve product object from object if not from registry
197197
*
198198
* @return Mage_Catalog_Model_Product
199199
*/

app/code/core/Mage/Adminhtml/Block/Catalog/Product/Helper/Form/Gallery/Content.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function _prepareLayout()
7272
}
7373

7474
/**
75-
* Retrive uploader block
75+
* Retrieve uploader block
7676
*
7777
* @return Mage_Uploader_Block_Multiple
7878
*/
@@ -82,7 +82,7 @@ public function getUploader()
8282
}
8383

8484
/**
85-
* Retrive uploader block html
85+
* Retrieve uploader block html
8686
*
8787
* @return string
8888
*/

app/code/core/Mage/Adminhtml/Block/Media/Editor.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function getResizeButtonHtml()
116116
}
117117

118118
/**
119-
* Retrive uploader js object name
119+
* Retrieve uploader js object name
120120
*
121121
* @return string
122122
*/
@@ -126,7 +126,7 @@ public function getJsObjectName()
126126
}
127127

128128
/**
129-
* Retrive config json
129+
* Retrieve config json
130130
*
131131
* @return string
132132
*/
@@ -136,7 +136,7 @@ public function getConfigJson()
136136
}
137137

138138
/**
139-
* Retrive config object
139+
* Retrieve config object
140140
*
141141
* @return Varien_Config
142142
*/

app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function getFormHtml(Varien_Object $entity, $entityType='quote') {
4848
}
4949

5050
/**
51-
* Retrive items allowed for gift messages.
51+
* Retrieve items allowed for gift messages.
5252
*
5353
* If no items available return false.
5454
*

app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Giftmessage/Form.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function setEntity(Varien_Object $entity)
6161
}
6262

6363
/**
64-
* Retrive entity for form
64+
* Retrieve entity for form
6565
*
6666
* @return Varien_Object
6767
*/
@@ -252,7 +252,7 @@ protected function _initMessage()
252252
}
253253

254254
/**
255-
* Retrive gift message for entity
255+
* Retrieve gift message for entity
256256
*
257257
* @return Mage_GiftMessage_Model_Message
258258
*/
@@ -266,7 +266,7 @@ public function getMessage()
266266
}
267267

268268
/**
269-
* Retrive real name for field
269+
* Retrieve real name for field
270270
*
271271
* @param string $name
272272
* @return string
@@ -277,7 +277,7 @@ protected function _getFieldName($name)
277277
}
278278

279279
/**
280-
* Retrive real html id for field
280+
* Retrieve real html id for field
281281
*
282282
* @param string $id
283283
* @return string
@@ -288,7 +288,7 @@ protected function _getFieldId($id)
288288
}
289289

290290
/**
291-
* Retrive field html id prefix
291+
* Retrieve field html id prefix
292292
*
293293
* @return string
294294
*/

0 commit comments

Comments
 (0)