diff --git a/website/docs/api/createSelectorCreator.mdx b/website/docs/api/createSelectorCreator.mdx index e3f202f6c..6f5886b2c 100644 --- a/website/docs/api/createSelectorCreator.mdx +++ b/website/docs/api/createSelectorCreator.mdx @@ -17,7 +17,7 @@ Accepts either a `memoize` function and `...memoizeOptions` rest parameter, or s | Name | Description | | :----------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `options` | An options object containing the `memoize` function responsible for memoizing the `resultFunc` inside (e.g., `lruMemoize` or `weakMapMemoize`). It also provides additional options for customizing memoization. While the `memoize` property is mandatory, the rest are optional. | -| `options.argsMemoize?` | The optional memoize function that is used to memoize the arguments passed into the generated by (e.g., `lruMemoize` or `weakMapMemoize`).
**`Default`** = `lruMemoize` | +| `options.argsMemoize?` | The optional memoize function that is used to memoize the arguments passed into the generated by (e.g., `lruMemoize` or `weakMapMemoize`).
**`Default`** = `lruMemoize` before 5.0.0 and `weakMapMemoize` after | | `options.argsMemoizeOptions?` | Optional configuration options for the `argsMemoize` function. These options are passed to the `argsMemoize` function as the second argument.
since 5.0.0 | | `options.inputStabilityCheck?` | Overrides the global input stability check for the selector. Possible values are:
`once` - Run only the first time the selector is called.
`always` - Run every time the selector is called.
`never` - Never run the input stability check.
**`Default`** = `'once'`
since 5.0.0 | | `options.memoize` | The memoize function that is used to memoize the `resultFunc` inside (e.g., `lruMemoize` or `weakMapMemoize`). since 5.0.0 |