Skip to content

Commit e669fae

Browse files
committed
Fixed a couple of spelling mistakes
1 parent 45e3ddb commit e669fae

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,10 @@ public function testGetCustomerAttributeMetadata()
239239
$this->assertNotEmpty($attributes);
240240

241241
// remove odd extension attributes
242-
$allAtrributes = $expectAttrsWithVals;
243-
$allAtrributes['created_at'] = $attributes['created_at'];
244-
$allAtrributes['updated_at'] = $attributes['updated_at'];
245-
$attributes = array_intersect_key($attributes, $allAtrributes);
242+
$allAttributes = $expectAttrsWithVals;
243+
$allAttributes['created_at'] = $attributes['created_at'];
244+
$allAttributes['updated_at'] = $attributes['updated_at'];
245+
$attributes = array_intersect_key($attributes, $allAttributes);
246246

247247
foreach ($attributes as $attributeCode => $attributeValue) {
248248
$this->assertNotNull($attributeCode);

lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ public function quoteInto($text, $value, $type = null, $count = null);
633633
/**
634634
* Quotes an identifier.
635635
*
636-
* Accepts a string representing a qualified indentifier. For Example:
636+
* Accepts a string representing a qualified identifier. For Example:
637637
* <code>
638638
* $adapter->quoteIdentifier('myschema.mytable')
639639
* </code>

setup/src/Magento/Setup/Console/Command/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ protected function configure()
183183
self::INPUT_KEY_INTERACTIVE_SETUP,
184184
self::INPUT_KEY_INTERACTIVE_SETUP_SHORTCUT,
185185
InputOption::VALUE_NONE,
186-
'Interactive Magento instalation'
186+
'Interactive Magento installation'
187187
),
188188
new InputOption(
189189
OperationsExecutor::KEY_SAFE_MODE,

0 commit comments

Comments
 (0)