Skip to content

Commit 5f4dd81

Browse files
committed
[docs] Fix links
1 parent 16560d5 commit 5f4dd81

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

docs/API/Methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Send a new action and state manually to be shown on the monitor. It's recommende
5656
- `action` *String* (action type) or *Object* with required `type` key.
5757
- `state` *any* - usually object to expand.
5858
- [`options`] *Object* - [see the available options](Arguments.md).
59-
- [`instanceId`] *String* - instance id for which to include the log.
59+
- [`instanceId`] *String* - instance id for which to include the log. If not specified and not present in the `options` object, will be the first available instance.
6060

6161
<a id="listen"></a>
6262
### listen(onMessage, instanceId)

docs/FAQ.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
## Table of Contents
44
- [How to get it work](#how-to-get-it-work)
5-
- [How to disable/enable it in production](#how-to-disableenable-it-in-production)
5+
- [How to disable/enable it in production](#how-to-disable-it-in-production)
66
- [How to persist debug sessions across page reloads](#how-to-persist-debug-sessions-across-page-reloads)
77
- [How to open DevTools programmatically](#how-to-open-devtools-programmatically)
8-
- [How to keep DevTools window focused all the time in a chrome panel](#how-to-open-devtools-programmatically)
8+
- [How to keep DevTools window focused all the time in a chrome panel](#how-to-keep-devtools-window-focused-all-the-time-in-a-chrome-panel)
99
- [How to enable/disable errors notifying](#how-to-enabledisable-errors-notifying)
1010
- [How to get it work with WebWorkers, React Native, hybrid, desktop and server side apps](#how-to-get-it-work-with-webworkers-react-native-hybrid-desktop-and-server-side-apps)
1111
- [Keyboard shortcuts](#keyboard-shortcuts)
12-
- [How to change keyboard shortcuts](#how-to-change-keyboard-shortcuts)
1312

1413
#### How to get it work
1514
- Check the extension with [Counter](http://zalmoxisus.github.io/examples/counter/) or [TodoMVC](http://zalmoxisus.github.io/examples/todomvc/) demo.

docs/Integrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Integrations for different languages and frameworks
1+
# Integrations for js and non-js frameworks
22

33
Mostly functional:
44
- [Angular](#angular)

docs/Troubleshooting.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Most likely you mutate the state. Check it by [adding `redux-immutable-state-inv
1818

1919
### It doesn't work with other store enhancers
2020

21-
Usually the extension's store enhancer should be last in the compose. When you're using `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__` or `composeWithDevTools` helper you don't have to worry about the enhancers order. However some enhancers ([like `redux-batched-subscribe`](https://github.com/zalmoxisus/redux-devtools-extension/issues/261)) also have this requirement to be the last in the compose. In this case you can use it like so:
21+
Usually the extension's store enhancer should be last in the compose. When you're using [`window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__`](/README.md#12-advanced-store-setup) or [`composeWithDevTools`](/README.md#13-use-redux-devtools-extension-package-from-npm) helper you don't have to worry about the enhancers order. However some enhancers ([like `redux-batched-subscribe`](https://github.com/zalmoxisus/redux-devtools-extension/issues/261)) also have this requirement to be the last in the compose. In this case you can use it like so:
2222

2323
```js
2424
const store = createStore(reducer, preloadedState, compose(
@@ -76,12 +76,10 @@ React synthetic event cannot be reused for performance reason. So, it's not poss
7676

7777
### Symbols or other unserializable data not shown
7878

79-
To get data which cannot be serialized by `JSON.stringify`, use `serialize` parameter, setting `options` to `true`:
79+
To get data which cannot be serialized by `JSON.stringify`, set [`serialize` parameter](/docs/API/Arguments.md#serialize):
8080
```js
8181
const store = Redux.createStore(reducer, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__({
82-
serialize: {
83-
options: true
84-
}
82+
serialize: true
8583
}));
8684
```
8785

0 commit comments

Comments
 (0)