From 0742a519f02ab621cdfeaec2faac53467c97dd83 Mon Sep 17 00:00:00 2001 From: Stijn de Witt Date: Mon, 10 Apr 2017 22:06:09 +0200 Subject: [PATCH] 0.1.1: Fix args count in constructors + Increased test coverage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e79492..e083846 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ don't pass a factory as the last argument to `mix`, it will use the first argume when available, or create a new superclass automatically and use that to derive from. It will then return a new class that derives from the superclass adding all the mixins that were passed. -The reurned class can be extended from to inherit all the mixins: +The returned class can be extended from to inherit all the mixins: ```js class Duckish extends mix(Looker, Walker, Talker) {