You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/todomvc/readme.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ Every NestedTypes model and collection has `_changeToken` property, which contai
63
63
64
64
It's works faster than any generic PureRenderMixin because we dynamically compile `shouldComponentUpdate` functions with _loops unrolled_, taking props list from component's `propTypes` (loops through hashes are very expensive, as well as `Object.keys` call).
65
65
66
-
Why it's better than just deal with immutable data? Because we can have circular references, and premanent references to objects in data layer with no problems. Have a reference? Pass it around, no problem.
66
+
Why it's better than just deal with immutable data? Because we can have circular references, and premanent references to objects in data layer with no problems. Thus, you may safely pass nested models and collection around. As you most likely used to.
67
67
68
68
### What does `editing : ToDo.from( '^props.todos' )` from `todolist.jsx` mean?
0 commit comments