Skip to content

Commit

Permalink
Fixed a couple of spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
mage2pratik committed Jan 16, 2019
1 parent 45e3ddb commit e669fae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ public function testGetCustomerAttributeMetadata()
$this->assertNotEmpty($attributes);

// remove odd extension attributes
$allAtrributes = $expectAttrsWithVals;
$allAtrributes['created_at'] = $attributes['created_at'];
$allAtrributes['updated_at'] = $attributes['updated_at'];
$attributes = array_intersect_key($attributes, $allAtrributes);
$allAttributes = $expectAttrsWithVals;
$allAttributes['created_at'] = $attributes['created_at'];
$allAttributes['updated_at'] = $attributes['updated_at'];
$attributes = array_intersect_key($attributes, $allAttributes);

foreach ($attributes as $attributeCode => $attributeValue) {
$this->assertNotNull($attributeCode);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ public function quoteInto($text, $value, $type = null, $count = null);
/**
* Quotes an identifier.
*
* Accepts a string representing a qualified indentifier. For Example:
* Accepts a string representing a qualified identifier. For Example:
* <code>
* $adapter->quoteIdentifier('myschema.mytable')
* </code>
Expand Down
2 changes: 1 addition & 1 deletion setup/src/Magento/Setup/Console/Command/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ protected function configure()
self::INPUT_KEY_INTERACTIVE_SETUP,
self::INPUT_KEY_INTERACTIVE_SETUP_SHORTCUT,
InputOption::VALUE_NONE,
'Interactive Magento instalation'
'Interactive Magento installation'
),
new InputOption(
OperationsExecutor::KEY_SAFE_MODE,
Expand Down

0 comments on commit e669fae

Please sign in to comment.