aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_app.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-05-25 23:02:40 +0200
committerLoïc Hoguin <[email protected]>2011-05-25 23:02:40 +0200
commit3e55cb62c9053895412b1cf2a65d54ef90eda34c (patch)
tree0ac9963ba35359b928a594fbde02564e5893daea /src/cowboy_app.erl
parent0720d6b9e3c8655b6222a84a2f37fcab04b3dd94 (diff)
downloadcowboy-3e55cb62c9053895412b1cf2a65d54ef90eda34c.tar.gz
cowboy-3e55cb62c9053895412b1cf2a65d54ef90eda34c.tar.bz2
cowboy-3e55cb62c9053895412b1cf2a65d54ef90eda34c.zip
Refresh the type specifications.
Following discussions on #erlounge. Also fixes compilation in R14B03 and fixes a few underspecs dialyzer warnings.
Diffstat (limited to 'src/cowboy_app.erl')
-rw-r--r--src/cowboy_app.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cowboy_app.erl b/src/cowboy_app.erl
index 702d9ce..91f9818 100644
--- a/src/cowboy_app.erl
+++ b/src/cowboy_app.erl
@@ -17,15 +17,15 @@
-export([start/2, stop/1]). %% API.
--type application_start_type() :: normal |
- {takeover, Node::node()} | {failover, Node::node()}.
+-type application_start_type() :: normal
+ | {takeover, node()} | {failover, node()}.
%% API.
--spec start(Type::application_start_type(), Args::term()) -> {ok, Pid::pid()}.
+-spec start(application_start_type(), any()) -> {ok, pid()}.
start(_Type, _Args) ->
cowboy_sup:start_link().
--spec stop(State::term()) -> ok.
+-spec stop(any()) -> ok.
stop(_State) ->
ok.