Skip to content

Commit d59a428

Browse files
authored
Fix minor type "consturctor" > "constructor"
1 parent 6f25236 commit d59a428

File tree

1 file changed

+5
-5
lines changed
  • app/code/Magento/Ui/view/base/web/js/lib/core

1 file changed

+5
-5
lines changed

app/code/Magento/Ui/view/base/web/js/lib/core/class.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ define([
2727
* Creates constructor function which allows
2828
* initialization without usage of a 'new' operator.
2929
*
30-
* @param {Object} protoProps - Prototypal propeties of a new consturctor.
31-
* @param {Function} consturctor
32-
* @returns {Function} Created consturctor.
30+
* @param {Object} protoProps - Prototypal propeties of a new constructor.
31+
* @param {Function} constructor
32+
* @returns {Function} Created constructor.
3333
*/
34-
function createConstructor(protoProps, consturctor) {
35-
var UiClass = consturctor;
34+
function createConstructor(protoProps, constructor) {
35+
var UiClass = constructor;
3636

3737
if (!UiClass) {
3838

0 commit comments

Comments
 (0)