From e47fe288fab23066ac5abeb2c3afb2f0ec961e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Tue, 9 May 2017 13:58:07 +0200 Subject: [PATCH] Update mixin.js Typo fixed --- js/lib/utils/mixin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lib/utils/mixin.js b/js/lib/utils/mixin.js index 6d5248c15..d5be43734 100644 --- a/js/lib/utils/mixin.js +++ b/js/lib/utils/mixin.js @@ -3,7 +3,7 @@ * the prototype of a parent object. * * @example - * class MyClass extends mixin(ExtistingClass, evented, etc) {} + * class MyClass extends mixin(ExistingClass, evented, etc) {} * * @param {Class} Parent The class to extend the new class from. * @param {...Object} mixins The objects to mix in.