From 4eea06235bec6698efceb431ba00b0a7927af69d Mon Sep 17 00:00:00 2001 From: Ryan McBride Date: Sat, 4 Jul 2015 10:36:18 -0700 Subject: [PATCH] Fixed typo in 9.4 Line read `contructor(options = {}) {` Edited to `constructor(options = {}) {` No other lines were edited or changed. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38aefa55..122e9ecd 100644 --- a/README.md +++ b/README.md @@ -704,7 +704,7 @@ ```javascript class Jedi { - contructor(options = {}) { + constructor(options = {}) { this.name = options.name || 'no name'; }