Skip to content

Commit

Permalink
Fix Typo in Data\Form\Element\Factory.php
Browse files Browse the repository at this point in the history
Sorry for the small PR!
  • Loading branch information
zack6849 authored Oct 8, 2018
1 parent 80469a6 commit 80f19c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function create($elementType, array $config = [])
$element = $this->_objectManager->create($className, $config);
if (!$element instanceof AbstractElement) {
throw new \InvalidArgumentException(
$className . ' doesn\'n extend \Magento\Framework\Data\Form\Element\AbstractElement'
$className . ' doesn\'t extend \Magento\Framework\Data\Form\Element\AbstractElement'
);
}
return $element;
Expand Down

0 comments on commit 80f19c1

Please sign in to comment.