Skip to content

Commit

Permalink
Fix a typo in the Immutable.js docs (#2453)
Browse files Browse the repository at this point in the history
  • Loading branch information
dguo authored and timdorr committed Jun 15, 2017
1 parent bf3a557 commit 1094724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/recipes/UsingImmutableJS.md
Expand Up @@ -13,7 +13,7 @@ Immutable-focused libraries such as Immutable.JS have been designed to overcome

Whether you choose to use such a library, or stick with plain JavaScript, depends on how comfortable you are with adding another dependency to your app, or how sure you are that you can avoid the pitfalls inherent within JavaScript’s approach to immutability.

Whichever option you choose, make sure you’re familiar with the concepts of [immutability, side effects and mutation](http://redux.js.org/docs/recipes/reducers/PrerequisiteConcepts.html#note-on-immutability-side-effects-and-mutation). In particular, ensure you have a deep understanding of what JavaScript does when updating and copying values in order to guard against accidental mutations that will degrade you app’s performance, or break it altogether.
Whichever option you choose, make sure you’re familiar with the concepts of [immutability, side effects and mutation](http://redux.js.org/docs/recipes/reducers/PrerequisiteConcepts.html#note-on-immutability-side-effects-and-mutation). In particular, ensure you have a deep understanding of what JavaScript does when updating and copying values in order to guard against accidental mutations that will degrade your app’s performance, or break it altogether.

#### Further Information

Expand Down

0 comments on commit 1094724

Please sign in to comment.