diff options
Diffstat (limited to 'doc/src/manual/cowboy_handler.asciidoc')
-rw-r--r-- | doc/src/manual/cowboy_handler.asciidoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/manual/cowboy_handler.asciidoc b/doc/src/manual/cowboy_handler.asciidoc index 28ac311..93dad22 100644 --- a/doc/src/manual/cowboy_handler.asciidoc +++ b/doc/src/manual/cowboy_handler.asciidoc @@ -28,10 +28,10 @@ init(Req, State) -> {ok, Req, State} terminate(Reason, Req, State) -> ok %% optional -Req :: cowboy_req:req() -State :: any() -Reason :: normal - | {crash, error | exit | throw, any()} +Req :: cowboy_req:req() +State :: any() +Reason :: normal + | {crash, error | exit | throw, any()} ---- These two callbacks are common to all handlers. |