From c9ecf20468a6e83b6d2ffd38c14adb53514b9d22 Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Fri, 17 Mar 2017 02:56:50 -0700 Subject: [PATCH] fix spelling errors in home.jsx --- 11_src/src/home.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/11_src/src/home.jsx b/11_src/src/home.jsx index 0e3a205d..7777467e 100644 --- a/11_src/src/home.jsx +++ b/11_src/src/home.jsx @@ -174,7 +174,7 @@ export default ConnectedHome // As you can see the application of the HOC function on the component class is now made implicit ( @connect(mapStateToProps) ) // instead of calling it ourselves ( @connect(mapStateToProps)(Myclass) ). Some find this approach more elegant, others // dislike the fact that it's hiding what is really happening and many just don't get how decorators works. Knowing all that -// and remembering that decorators are still experimental, you can now decide by youselves which "connect" usage you -// prefer and you won't be suprised to find both syntax in the many articles, tutorials, starter kits, etc. out there. +// and remembering that decorators are still experimental, you can now decide by yourselves which "connect" usage you +// prefer and you won't be surprised to find both syntax in the many articles, tutorials, starter kits, etc. out there. // Go to ./12_final-words.js for our last advice about what to do now...