From 73b6912362c71995b24182acbf56f22a8b6d09ea Mon Sep 17 00:00:00 2001 From: Alan Thompson Date: Thu, 17 May 2018 17:37:06 -0400 Subject: [PATCH] Update ManagingState.md small typo --- docs/ManagingState.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ManagingState.md b/docs/ManagingState.md index 1c3a1d6..0fd95b0 100644 --- a/docs/ManagingState.md +++ b/docs/ManagingState.md @@ -1,6 +1,6 @@ # Managing state: atoms, cursors, Reactions, and tracking -Although it is possible to update reagent componetns by remounting the entire component tree with `react.core/render`, Reagent comes with a sophisticated state management library based on `reagent.core/atom`, which allows components to track application state and update only when needed. Reagent also provides cursors, which are like ratoms but can be constructed from portions of one or more other ratoms to limit or expand which ratoms a component watches. Finally, Reagent provides a set of tracking primitives called reactions and a set of utility functions to build more customized state management. +Although it is possible to update reagent components by remounting the entire component tree with `react.core/render`, Reagent comes with a sophisticated state management library based on `reagent.core/atom`, which allows components to track application state and update only when needed. Reagent also provides cursors, which are like ratoms but can be constructed from portions of one or more other ratoms to limit or expand which ratoms a component watches. Finally, Reagent provides a set of tracking primitives called reactions and a set of utility functions to build more customized state management. **TODO is this right?**