diff --git a/README.md b/README.md index 795608e1..909954c9 100644 --- a/README.md +++ b/README.md @@ -956,14 +956,14 @@ Other Style Guides class Rey extends Jedi { constructor(...args) { - super(...args); + super(args); } } // good class Rey extends Jedi { constructor(...args) { - super(...args); + super(args); this.name = 'Rey'; } }