From 54dfe0b43caf52e9519787ac2dc8b1acb02f9d7e Mon Sep 17 00:00:00 2001 From: BEAUDRU Manuel Date: Sat, 22 Oct 2016 22:43:15 +0200 Subject: [PATCH] Wrong library name reference in tutorial.MD (#8038) * Update tutorial.md Seems like you are talking about immutable.js and not immutability.js which doesn't exist :) * Capitalize Immutable.js --- docs/tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/tutorial.md b/docs/tutorial/tutorial.md index d50b232a37..fd17c1d08c 100644 --- a/docs/tutorial/tutorial.md +++ b/docs/tutorial/tutorial.md @@ -232,7 +232,7 @@ Determining how a immutable object has changed is considerably easier. If the ob The biggest benefit of immutability in React comes when you build simple _pure components_. Since immutable data can more easily determine if changes have been made it also helps to determine when a component requires being re-rendered. -To learn how you can build *pure components* take a look at [shouldComponentUpdate()](https://facebook.github.io/react/docs/update.html). Also, take a look at the [immutability.js](https://facebook.github.io/immutable-js/) library to strictly enforce immutable data. +To learn how you can build *pure components* take a look at [shouldComponentUpdate()](https://facebook.github.io/react/docs/update.html). Also, take a look at the [Immutable.js](https://facebook.github.io/immutable-js/) library to strictly enforce immutable data. ## Functional Components