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_sup.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_sup.erl')
-rw-r--r-- | src/cowboy_sup.erl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cowboy_sup.erl b/src/cowboy_sup.erl index c0ef5e2..8ce02f0 100644 --- a/src/cowboy_sup.erl +++ b/src/cowboy_sup.erl @@ -16,8 +16,11 @@ -module(cowboy_sup). -behaviour(supervisor). --export([start_link/0]). %% API. --export([init/1]). %% supervisor. +%% API. +-export([start_link/0]). + +%% supervisor. +-export([init/1]). -define(SUPERVISOR, ?MODULE). |