From 3956d9d710de5fc8eb115fc1a097726d72c85d2c Mon Sep 17 00:00:00 2001 From: Matthew Clemens Date: Sun, 5 Mar 2017 13:17:25 -0800 Subject: [PATCH] fix constructor spelling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d16ba84776..8a74a48ca4 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ class MyComponent extends React.Component { state = { selectedDay: new Date(), } - costructor(props) { + constructor(props) { super(props); this.handleDayClick = this.handleDayClick.bind(this); }