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
Fix links to some headings with special chars (#3494)
A couple of links in tables of contents were broken.
These were links where the URL fragment in the target was
auto-generated. When that happens, most special characters are removed
from the heading.
When the links in the tables of contents were written, the ones I am
fixing replaced some of the special characters with `-`, instead of
stripping them.
Copy file name to clipboardExpand all lines: docs/faq/Performance.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ hide_title: true
10
10
## Table of Contents
11
11
12
12
-[How well does Redux “scale” in terms of performance and architecture?](#how-well-does-redux-scale-in-terms-of-performance-and-architecture)
13
-
-[Won't calling “all my reducers” for each action be slow?](#won-t-calling-all-my-reducers-for-each-action-be-slow)
13
+
-[Won't calling “all my reducers” for each action be slow?](#wont-calling-all-my-reducers-for-each-action-be-slow)
14
14
-[Do I have to deep-clone my state in a reducer? Isn't copying my state going to be slow?](#do-i-have-to-deep-clone-my-state-in-a-reducer-isnt-copying-my-state-going-to-be-slow)
15
15
-[How can I reduce the number of store update events?](#how-can-i-reduce-the-number-of-store-update-events)
16
16
-[Will having “one state tree” cause memory problems? Will dispatching many actions take up memory?](#will-having-one-state-tree-cause-memory-problems-will-dispatching-many-actions-take-up-memory)
Copy file name to clipboardExpand all lines: docs/faq/ReactRedux.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ hide_title: true
13
13
-[Why isn't my component re-rendering, or my mapStateToProps running?](#why-isnt-my-component-re-rendering-or-my-mapstatetoprops-running)
14
14
-[Why is my component re-rendering too often?](#why-is-my-component-re-rendering-too-often)
15
15
-[How can I speed up my mapStateToProps?](#how-can-i-speed-up-my-mapstatetoprops)
16
-
-[Why don't I have this.props.dispatch available in my connected component?](#why-dont-i-have-this-props-dispatch-available-in-my-connected-component)
16
+
-[Why don't I have this.props.dispatch available in my connected component?](#why-dont-i-have-thispropsdispatch-available-in-my-connected-component)
17
17
-[Should I only connect my top component, or can I connect multiple components in my tree?](#should-i-only-connect-my-top-component-or-can-i-connect-multiple-components-in-my-tree)
18
18
-[How does Redux compare to the React Context API?](#how-does-redux-compare-to-the-react-context-api)
0 commit comments