0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Fix unused type in cowboy_static

This commit is contained in:
Loïc Hoguin 2018-11-05 17:33:00 +01:00
parent 9d2b1a8892
commit bdd324ec01
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764

View file

@ -29,7 +29,7 @@
-type extra_etag() :: {etag, module(), function()} | {etag, false}.
-type extra_mimetypes() :: {mimetypes, module(), function()}
| {mimetypes, binary() | {binary(), binary(), [{binary(), binary()}]}}.
-type extra() :: [extra_etag() | extra_mimetypes()].
-type extra() :: [extra_charset() | extra_etag() | extra_mimetypes()].
-type opts() :: {file | dir, string() | binary()}
| {file | dir, string() | binary(), extra()}
| {priv_file | priv_dir, atom(), string() | binary()}