From 3dfa4969e52fc31f8d14a0458440c76bc1188a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bel=C3=A9n=20Curcio?= Date: Fri, 23 Dec 2016 10:50:16 -0300 Subject: [PATCH] Update IMMUTABLEJS.md --- docs/frontend/IMMUTABLEJS.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/frontend/IMMUTABLEJS.md b/docs/frontend/IMMUTABLEJS.md index 157e3c7ea..76a9323cf 100644 --- a/docs/frontend/IMMUTABLEJS.md +++ b/docs/frontend/IMMUTABLEJS.md @@ -1,8 +1,9 @@ -# # InmutableJS +# InmutableJS InmutableJS is a library from Facebook that provides a series of inmutable data structures. They are always immutable. The reference to them can change but the data inside of them cannot which means you can build predictable and reliable state models. We use ImmutableJS in Talk and it becomes really easy to manage Talk’s application state. [Immutable.js](https://facebook.github.io/immutable-js/) -More about Immutable Data and React [React.js Conf 2015 - Immutable Data and React - YouTube](https://www.youtube.com/watch?v=I7IdS-PbEgI&feature=youtu.be) +More about Immutable Data and React: +[React.js Conf 2015 - Immutable Data and React - YouTube](https://www.youtube.com/watch?v=I7IdS-PbEgI&feature=youtu.be) ## Why ImmutableJS? - __Immutable Data is faster__