Interceptors doc: add "event" to qualify handler

This change is only valid if I understood this correctly.
A handler in this page is an event handler, right?

BTW thanks for this fun and informative work on the docs.
This commit is contained in:
Prof Gra 2017-07-14 19:55:34 +02:00 committed by Christophe Gragnic
parent b6c301b31c
commit ee7c83e6da

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.