Skip to content

Commit 150d3c5

Browse files
authored
Merge pull request #664 from aryaemami59/fix-toc
2 parents 0837509 + 1f0c25d commit 150d3c5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

website/docs/FAQ.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const selectAlertsByType = createSelector(
9595

9696
<!-- END: FAQ/selectorRecomputing.ts -->
9797

98-
## Can I use Reselect without <ExternalLinks.Redux />?
98+
## Can I use Reselect without <ExternalLinks.Redux>Redux</ExternalLinks.Redux>?
9999

100100
Yes. Reselect has no dependencies on any other package, so although it was designed to be used with <ExternalLinks.Redux /> it can be used independently. It can be used with any plain JS data, such as typical <ExternalLinks.React /> state values, as long as that data is being updated immutably.
101101

@@ -668,7 +668,7 @@ const MyComponent = ({ id }) => {
668668
669669
<!-- END: FAQ/MyComponent.tsx -->
670670
671-
## How can I make pre-typed version of <InternalLinks.CreateSelector /> for my root state?
671+
## How can I make a pre-typed version of <InternalLinks.CreateSelector>`createSelector`</InternalLinks.CreateSelector> for my root state?
672672
673673
When used with Redux, it's typical to have all input selectors take `(state: RootState)` as their first argument. Creating a pre-typed version of `createSelector` can shorten that repetition.
674674
@@ -724,7 +724,7 @@ This approach currently only supports <InternalLinks.InputSelectors /> provided
724724
725725
:::
726726
727-
## What if I want to use <InternalLinks.CreateSelector /> without memoization?
727+
## What if I want to use <InternalLinks.CreateSelector>`createSelector`</InternalLinks.CreateSelector> without memoization?
728728
729729
There may be rare cases when you might want to use `createSelector` for its composition syntax, but without any memoization applied. In that case, create an <ExternalLinks.IdentityFunction /> and use it as the memoizers:
730730

website/docs/api/development-only-stability-checks.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ setGlobalDevModeChecks({ inputStabilityCheck: 'always' })
6767
setGlobalDevModeChecks({ inputStabilityCheck: 'never' })
6868
```
6969

70-
### 2. Per selector by passing an `inputStabilityCheck` option directly to <InternalLinks.CreateSelector />:
70+
### 2. Per selector by passing an `inputStabilityCheck` option directly to <InternalLinks.CreateSelector>`createSelector`</InternalLinks.CreateSelector>:
7171

7272
<!-- START: development-only-stability-checks/inputStabilityCheck.ts -->
7373

@@ -187,7 +187,7 @@ setGlobalDevModeChecks({ identityFunctionCheck: 'always' })
187187
setGlobalDevModeChecks({ identityFunctionCheck: 'never' })
188188
```
189189

190-
### 2. Per selector by passing an `identityFunctionCheck` option directly to <InternalLinks.CreateSelector />:
190+
### 2. Per selector by passing an `identityFunctionCheck` option directly to <InternalLinks.CreateSelector>`createSelector`</InternalLinks.CreateSelector>:
191191

192192
<!-- START: development-only-stability-checks/identityFunctionCheck.ts -->
193193

website/docs/introduction/how-does-reselect-work.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The <InternalLinks.InputSelectors /> take the same arguments as the <InternalLin
7676

7777
:::
7878

79-
## Why Reselect Is Often Used With <ExternalLinks.Redux />
79+
## Why Reselect Is Often Used With <ExternalLinks.Redux>Redux</ExternalLinks.Redux>
8080

8181
While Reselect can be used independently from Redux, it is a standard tool used in most Redux applications to help optimize calculations and UI updates:
8282

website/docs/related-projects.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Link from '@docusaurus/Link'
1212

1313
# Related Projects
1414

15-
## <ExternalLinks.ReReselect />
15+
## <ExternalLinks.ReReselect>Re-reselect</ExternalLinks.ReReselect>
1616

1717
Enhances Reselect selectors by wrapping <InternalLinks.CreateSelector /> and returning a memoized collection of selectors indexed with the cache key returned by a custom resolver function.
1818

0 commit comments

Comments
 (0)