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

Have only one -export and -export_type per line

This should make easier spotting additions and removals in commits.
This commit is contained in:
Loïc Hoguin 2012-08-27 12:16:07 +02:00
parent e4124de2c7
commit a5e75219f0
13 changed files with 159 additions and 57 deletions

View file

@ -19,8 +19,11 @@
%% is no need for concern as crypto is already included.
-module(cowboy_http_websocket).
-export([upgrade/4]). %% API.
-export([handler_loop/4]). %% Internal.
%% API.
-export([upgrade/4]).
%% Internal.
-export([handler_loop/4]).
-include("http.hrl").
-include_lib("eunit/include/eunit.hrl").