Skip to content

Commit 29a87b5

Browse files
committed
docs: fix inline code
1 parent 1754832 commit 29a87b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api/autoBatchEnhancer.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ Any action that is tagged with `action.meta[SHOULD_AUTOBATCH] = true` will be tr
8484
`autoBatchEnhancer` accepts options to configure how the notification callback is queued:
8585
8686
- `{type: 'raf'}`: queues using `requestAnimationFrame` (default)
87-
- `{type: 'tick'}: queues using `queueMicrotask`
87+
- `{type: 'tick'}`: queues using `queueMicrotask`
8888
- `{type: 'timer, timeout: number}`: queues using `setTimeout`
89-
- `{type: 'callback', queueNotification: (notify: () => void) => void}: lets you provide your own callback, such as a debounced or throttled function
89+
- `{type: 'callback', queueNotification: (notify: () => void) => void}`: lets you provide your own callback, such as a debounced or throttled function
9090

9191
The default behavior is to queue the notifications using `requestAnimationFrame`.
9292

0 commit comments

Comments
 (0)