diff options
author | Loïc Hoguin <[email protected]> | 2012-08-27 12:16:07 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-08-27 12:16:07 +0200 |
commit | a5e75219f0bb9602178314a00eb9e0f9c22bcac6 (patch) | |
tree | d09cce41044ae6d6995a92b2a24126451925f0a6 /src/cowboy_http_static.erl | |
parent | e4124de2c71564d37b3732ede0fe1542de1d6f99 (diff) | |
download | cowboy-a5e75219f0bb9602178314a00eb9e0f9c22bcac6.tar.gz cowboy-a5e75219f0bb9602178314a00eb9e0f9c22bcac6.tar.bz2 cowboy-a5e75219f0bb9602178314a00eb9e0f9c22bcac6.zip |
Have only one -export and -export_type per line
This should make easier spotting additions and removals in commits.
Diffstat (limited to 'src/cowboy_http_static.erl')
-rw-r--r-- | src/cowboy_http_static.erl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/cowboy_http_static.erl b/src/cowboy_http_static.erl index 1eb375b..1513eea 100644 --- a/src/cowboy_http_static.erl +++ b/src/cowboy_http_static.erl @@ -177,9 +177,15 @@ -export([init/3]). %% cowboy_http_rest callbacks --export([rest_init/2, allowed_methods/2, malformed_request/2, - resource_exists/2, forbidden/2, last_modified/2, generate_etag/2, - content_types_provided/2, file_contents/2]). +-export([rest_init/2]). +-export([allowed_methods/2]). +-export([malformed_request/2]). +-export([resource_exists/2]). +-export([forbidden/2]). +-export([last_modified/2]). +-export([generate_etag/2]). +-export([content_types_provided/2]). +-export([file_contents/2]). %% internal -export([path_to_mimetypes/2]). |