Fix typos in Interceptors.md (#240)

This commit is contained in:
Evan Rubinton 2016-10-13 00:35:37 -04:00 committed by Daniel Compton
parent 961f6535b9
commit df8c1f41c8
1 changed files with 2 additions and 2 deletions

View File

@ -314,11 +314,11 @@ Interceptor which wraps that handler:
```
Notes:
1. Notice how this wrapper extracts data from the `context's` `:coeffect`
1. Notice how this wrapper extracts data from the `context's` `:coeffects`
and then calls the handler with that data (a handler must be called with `db` and `event`)
2. Equally notice how this wrapping takes the return value from the `-db`
handler and puts it into `context's` `:effect`
3. The modified `context` (it has a new `:coeffect`) is returned
3. The modified `context` (it has a new `:effects`) is returned
3. This is all done in `:before`. There is no `:after` (it is a noop). But this
could have been reversed with the work happening in `:after` and `:before` a noop. Shrug.
Remember that this Interceptor will be on the end of a chain.