aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/src/application.erl
diff options
context:
space:
mode:
authorStavros Aronis <[email protected]>2011-11-30 22:39:09 +0100
committerStavros Aronis <[email protected]>2011-12-01 11:55:10 +0100
commit832ce20b01c6dcf19de169a6df54e11e9abb62c9 (patch)
treecdbe668691a91cceda2dcfb54deacf2ae4804b7a /lib/kernel/src/application.erl
parentfeeaaadd6101b57a9e1b044f4dc3001e9c475c44 (diff)
downloadotp-832ce20b01c6dcf19de169a6df54e11e9abb62c9.tar.gz
otp-832ce20b01c6dcf19de169a6df54e11e9abb62c9.tar.bz2
otp-832ce20b01c6dcf19de169a6df54e11e9abb62c9.zip
Correct callback spec in application module
Diffstat (limited to 'lib/kernel/src/application.erl')
-rw-r--r--lib/kernel/src/application.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kernel/src/application.erl b/lib/kernel/src/application.erl
index caac4d926c..c299fb085c 100644
--- a/lib/kernel/src/application.erl
+++ b/lib/kernel/src/application.erl
@@ -59,7 +59,7 @@
-callback start(StartType :: normal | {takeover, node()} | {failover, node()},
StartArgs :: term()) ->
- {ok, pid()} | {ok, pid(), State :: term()} | {error, Reason :: term}.
+ {'ok', pid()} | {'ok', pid(), State :: term()} | {'error', Reason :: term()}.
-callback stop(State :: term()) ->
term().