From 91101465fad29f8b1f942a17dd711dcccfe5892e Mon Sep 17 00:00:00 2001 From: Andrew Fleming Date: Sat, 3 Mar 2018 23:58:30 +0000 Subject: [PATCH] Update data-model.md (#1682) Typo corrected --- docs/guides/data-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/data-model.md b/docs/guides/data-model.md index 4900657e9..bacf012fe 100644 --- a/docs/guides/data-model.md +++ b/docs/guides/data-model.md @@ -27,7 +27,7 @@ But for updating values, you'll need to use the [`Immutable.Record` API](https:/ Collections of Slate objects are represented as immutable `Lists`, `Sets`, `Stacks`, etc. Which means we get nice support for expressive methods like `filter`, `includes`, `take`, `skip`, `rest`, `last`, etc. -If you haven't used Immutable.js before, there is definitely a learning curve. Before you give into Slate, you should check out the [Immutable.js docs](https://facebook.github.io/immutable-js/docs/#/). Once you get the hang of it, it won't slow you down at all, but it will take a few days to get used to, and you might write things a little "un-performantly" to start. +If you haven't used Immutable.js before, there is definitely a learning curve. Before you dive into Slate, you should check out the [Immutable.js docs](https://facebook.github.io/immutable-js/docs/#/). Once you get the hang of it, it won't slow you down at all, but it will take a few days to get used to, and you might write things a little "un-performantly" to start. ## The "Value"