diff options
author | Loïc Hoguin <[email protected]> | 2015-02-16 18:03:35 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-02-16 18:03:35 +0100 |
commit | 4f2bbd2e5a08e10f98fc82c1f0a98a7c8649b3ee (patch) | |
tree | 0eaa05fc247994ac6f01f51c1979f7b321ca260c /doc/src/guide/rest_handlers.ezdoc | |
parent | 410662b29589214c1d825a027ec6b195c23e3ad6 (diff) | |
parent | 8fd3ff2d629fa13a52061e7db5c67a3ba6fe4429 (diff) | |
download | cowboy-4f2bbd2e5a08e10f98fc82c1f0a98a7c8649b3ee.tar.gz cowboy-4f2bbd2e5a08e10f98fc82c1f0a98a7c8649b3ee.tar.bz2 cowboy-4f2bbd2e5a08e10f98fc82c1f0a98a7c8649b3ee.zip |
Merge branch 'master' of https://github.com/sstrigler/cowboy
Diffstat (limited to 'doc/src/guide/rest_handlers.ezdoc')
-rw-r--r-- | doc/src/guide/rest_handlers.ezdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/guide/rest_handlers.ezdoc b/doc/src/guide/rest_handlers.ezdoc index e09790a..e6bb092 100644 --- a/doc/src/guide/rest_handlers.ezdoc +++ b/doc/src/guide/rest_handlers.ezdoc @@ -13,8 +13,8 @@ to all handlers. To use REST for the current request, this function must return a `cowboy_rest` tuple. ``` erlang -init(Req, Opts) -> - {cowboy_rest, Req, Opts}. +init(Req, _Opts) -> + {cowboy_rest, Req, #state{}}. ``` Cowboy will then switch to the REST protocol and start executing |