Merge pull request #367 from Grahack/patch-1

Interceptors doc: add "event" to qualify handler
This commit is contained in:
Mike Thompson 2017-07-16 07:59:29 +10:00 committed by GitHub
commit 213584e086
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ transforms a `request` in one direction, and, then in the backwards
sweep, it progressively produces a `response`. sweep, it progressively produces a `response`.
In re-frame, the forwards sweep progressively creates the `coeffects` In re-frame, the forwards sweep progressively creates the `coeffects`
(inputs to the handler), while the backwards sweep processes the `effects` (inputs to the event handler), while the backwards sweep processes the `effects`
(outputs from the handler). (outputs from the event handler).
I'll pause while you read that sentence again. That's the key I'll pause while you read that sentence again. That's the key
concept, right there. concept, right there.