Skip to content

Commit 7d3c083

Browse files
douglasnaphasmarkerikson
authored andcommitted
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.
1 parent 3fdb341 commit 7d3c083

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/faq/Performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hide_title: true
1010
## Table of Contents
1111

1212
- [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)
1414
- [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)
1515
- [How can I reduce the number of store update events?](#how-can-i-reduce-the-number-of-store-update-events)
1616
- [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)

docs/faq/ReactRedux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ hide_title: true
1313
- [Why isn't my component re-rendering, or my mapStateToProps running?](#why-isnt-my-component-re-rendering-or-my-mapstatetoprops-running)
1414
- [Why is my component re-rendering too often?](#why-is-my-component-re-rendering-too-often)
1515
- [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)
1717
- [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)
1818
- [How does Redux compare to the React Context API?](#how-does-redux-compare-to-the-react-context-api)
1919

0 commit comments

Comments
 (0)