diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt
index a768a3b..fe92bc5 100644
a
|
b
|
of caveats:
|
199 | 199 | define ``__init__`` as requiring any arguments. |
200 | 200 | |
201 | 201 | * Unlike the ``process_*`` methods which get called once per request, |
202 | | ``__init__`` gets called only *once*, when the Web server starts up. |
| 202 | ``__init__`` gets called only *once*, when the Web server responds to the |
| 203 | first request. |
203 | 204 | |
204 | 205 | Marking middleware as unused |
205 | 206 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |