diff options
author | Loïc Hoguin <[email protected]> | 2012-08-27 13:53:27 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-08-27 13:53:27 +0200 |
commit | f39c001c03aaaef9737f1b302a948455de6eefd7 (patch) | |
tree | 60164aefa5dd57e4ecd32f6fcd85115a33d11102 /examples/static/src/static_app.erl | |
parent | 6d84afd16d214c7e07d9f55e633dbcb0032473bc (diff) | |
download | cowboy-f39c001c03aaaef9737f1b302a948455de6eefd7.tar.gz cowboy-f39c001c03aaaef9737f1b302a948455de6eefd7.tar.bz2 cowboy-f39c001c03aaaef9737f1b302a948455de6eefd7.zip |
Rename cowboy_http_static to cowboy_static
Diffstat (limited to 'examples/static/src/static_app.erl')
-rw-r--r-- | examples/static/src/static_app.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/static/src/static_app.erl b/examples/static/src/static_app.erl index b919c27..0777aec 100644 --- a/examples/static/src/static_app.erl +++ b/examples/static/src/static_app.erl @@ -13,7 +13,7 @@ start(_Type, _Args) -> Dispatch = [ {'_', [ - {['...'], cowboy_http_static, [ + {['...'], cowboy_static, [ {directory, {priv_dir, static, []}} ]} ]} |