浏览代码

website: fix headings

Renée Kooi 7 年之前
父节点
当前提交
83a5cfe9de
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      website/src/docs/stores.md

+ 3 - 3
website/src/docs/stores.md

@@ -63,12 +63,12 @@ const uppy = Uppy({
 })
 ```
 
-### `opts.store`
+#### `opts.store`
 
 Pass a Redux store instance, from `Redux.createStore`.
 This instance should have the Uppy reducer mounted somewhere already.
 
-### `opts.id`
+#### `opts.id`
 
 By default, the `ReduxStore` assumes Uppy state is stored on a `state.uppy[id]` key.
 `id` is randomly generated by the store constructor, but can be specified by passing an `id` option if it should be predictable.
@@ -80,7 +80,7 @@ ReduxStore({
 })
 ```
 
-### `opts.selector`
+#### `opts.selector`
 
 If you'd rather not store the Uppy state under the `state.uppy` key at all, use the `selector` option to the `ReduxStore` constructor to tell it where to find state instead: