aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/cowboy_sup.erl')
-rw-r--r--src/cowboy_sup.erl7
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).